Ответ:
Объяснение:
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println("Введите числа а и б");
int a = scanner.nextInt();
int b = scanner.nextInt();
int sum=b;
while(a!=b)
{
sum+=a;
a++;
}
System.out.println("Сумма = "+sum);
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
Объяснение:
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println("Введите числа а и б");
int a = scanner.nextInt();
int b = scanner.nextInt();
int sum=b;
while(a!=b)
{
sum+=a;
a++;
}
System.out.println("Сумма = "+sum);
}
}