1.while(true){}
2.for(;;){}
/*
从键盘录入不确定的整数,并判断读入的正数和负数的个数,输入为0时程序结束。
*/
import java.util.Scanner;
class ForWhileTest {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int positiveNum = 0; // 正数
int negativeNum = 0; // 负数
// while (true){
for(;;){
int num = sc.nextInt();
if (num > 0 ){
positiveNum++;
}else if (num < 0 ){
negativeNum++;
}else {
break;
}
}
System.out.println("正数的个数 " + positiveNum);
System.out.println("负数的个数 " + negativeNum);
}
}