Алгоритмы (Java): различия между версиями
Перейти к навигации
Перейти к поиску
Строка 53: | Строка 53: | ||
=== Сколько нечетных среди n введенных === | === Сколько нечетных среди n введенных === | ||
<syntaxhighlight lang="java" line> | <syntaxhighlight lang="java" line> | ||
+ | package ru.example; | ||
+ | import java.util.Scanner; | ||
+ | |||
+ | public class Main { | ||
+ | |||
+ | public static void main(String[] args) { | ||
+ | System.out.print("Введите количество чисел: "); | ||
+ | Scanner sc = new Scanner(System.in); | ||
+ | int count = sc.nextInt(); | ||
+ | |||
+ | int oddCount = 0; | ||
+ | for (int i = 0; i < count; i++) { | ||
+ | System.out.print("Введите число " + (i+1) + ": "); | ||
+ | int num = sc.nextInt(); | ||
+ | if (Math.abs(num % 2) == 1) { | ||
+ | oddCount++; | ||
+ | } | ||
+ | } | ||
+ | |||
+ | System.out.println("Количество нечётных чисел = " + oddCount); | ||
+ | } | ||
+ | } | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Версия 12:09, 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 }
Произведение целых чисел
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 product = 1;
13 for (int i = 0; i < count; i++) {
14 System.out.print("Введите множетель " + (i+1) + ": ");
15 int num = sc.nextInt();
16 product *= num;
17 }
18
19 System.out.println("Произведение = " + product);
20 }
21 }
Сколько нечетных среди n введенных
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 oddCount = 0;
13 for (int i = 0; i < count; i++) {
14 System.out.print("Введите число " + (i+1) + ": ");
15 int num = sc.nextInt();
16 if (Math.abs(num % 2) == 1) {
17 oddCount++;
18 }
19 }
20
21 System.out.println("Количество нечётных чисел = " + oddCount);
22 }
23 }