Даны три целых числа. найти количество положительных чисел в исходном наборе.

Goodsteve31 Goodsteve31    2   11.08.2019 15:20    0

Ответы
itszhamilya1 itszhamilya1  04.10.2020 11:33
import java.util.*;
import java.lang.*;

class {
public static void main(String[] args){

Scanner sc = new Scanner(System.in);
int a, b, c;

System.out.print("Enter a: "); a = sc.nextInt();
System.out.print("Enter b: "); b = sc.nextInt();
System.out.print("Enter c: "); c = sc.nextInt();

int pol[] = new int[3];
pol[0] = a;
pol[1] = b;
pol[2] = c;

for(int i = 0; i < 3; i++){
if(pol[i] < 0){
pol[i] = 0;
};
};

for(int i = 1; i < 3; i++){
pol[0] += pol[i];
};

System.out.print("sum: " + pol[0]);
}
}
ПОКАЗАТЬ ОТВЕТЫ
Другие вопросы по теме Информатика