import java.util.Scanner;
public class Znanija {
public static void main(String args[]) {
int amount = 0;
//Создадим массив, где будут хранится значения чисел a, b & c
int[] array = new int[3];
Scanner input = new Scanner(System.in);
System.out.println("Enter the values of \"a\", \"b\", and \"c\" variables respectively: ");
//Заполняем массив числами a, b & c, соответственно: array[0] = a; array[1] = b; array[2] = c
for(int i = 0; i<array.length; i++) {
array[i] = input.nextInt();
}
//Проверям, положительное ли число, если да, то переменной "amount" прибавляем единицу
for(int j = 0; j<array.length; j++) {
if(array[j]>0) {
amount += 1;
System.out.println("\nThe amount of positive numbers: " + amount);
amount = 0
Array = array[3] //Задаём количество элементов
print('Enter the values of \"a\", \"b\", and \"c\" variables respectively: ')
for i = 0 in range (array.length)
array[i] = input()
for j in range (array.length)
if array[j]>0 then
amount += 1
print('\nThe amount of positive numbers: ', amount)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Java
import java.util.Scanner;
public class Znanija {
public static void main(String args[]) {
int amount = 0;
//Создадим массив, где будут хранится значения чисел a, b & c
int[] array = new int[3];
Scanner input = new Scanner(System.in);
System.out.println("Enter the values of \"a\", \"b\", and \"c\" variables respectively: ");
//Заполняем массив числами a, b & c, соответственно: array[0] = a; array[1] = b; array[2] = c
for(int i = 0; i<array.length; i++) {
array[i] = input.nextInt();
}
//Проверям, положительное ли число, если да, то переменной "amount" прибавляем единицу
for(int j = 0; j<array.length; j++) {
if(array[j]>0) {
amount += 1;
}
}
System.out.println("\nThe amount of positive numbers: " + amount);
}
}
Псевдокод
amount = 0
Array = array[3] //Задаём количество элементов
print('Enter the values of \"a\", \"b\", and \"c\" variables respectively: ')
for i = 0 in range (array.length)
array[i] = input()
for j in range (array.length)
if array[j]>0 then
amount += 1
print('\nThe amount of positive numbers: ', amount)