Алгоритмы (Java): различия между версиями
Перейти к навигации
Перейти к поиску
Строка 10: | Строка 10: | ||
public static void main(String[] args) { | public static void main(String[] args) { | ||
− | System.out.print("Введите число | + | System.out.print("Введите число слагаемых: "); |
Scanner sc = new Scanner(System.in); | Scanner sc = new Scanner(System.in); | ||
int count = sc.nextInt(); | int count = sc.nextInt(); |
Версия 12:04, 7 июля 2021
Код программ
Сумма вводимых целых чисел
1 package ru.example;
2
3 import java.util.Scanner;
4
5 public class Main {
6
7 public static void main(String[] args) {
8 System.out.print("Введите число слагаемых: ");
9 Scanner sc = new Scanner(System.in);
10 int count = sc.nextInt();
11
12 int sum = 0;
13 for (int i = 0; i < count; i++) {
14 System.out.print("Введите число " + (i+1) + ": ");
15 int num = sc.nextInt();
16 sum += num;
17 }
18
19 System.out.println("Сумма = " + sum);
20 }
21 }