Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * To change this license header, choose License Headers in Project Properties.
- * To change this template file, choose Tools | Templates
- * and open the template in the editor.
- */
- package app51;
- /**
- *
- * @author Admin
- */
- public class App51 {
- // Метод, который вычисляет сумму чисел от n до m включительно
- // n,m - целые числа
- // У метода должны быть два параметра типа int
- // Метод должен возвращать значение типа int
- public static int calcSum(int n, int m){
- int result = 0;
- for(int i=n; i<=m; i++){
- result = result + i; // result += i;
- }
- return result;
- }
- public static void main(String[] args) {
- // TODO code application logic here
- int res = calcSum(1, 3); // 1 + 2 + 3
- System.out.println(res);
- res = calcSum(1, 10);
- System.out.println(res);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement