package com.huaxin;
import java.util.Scanner;
/**
* @author wtl
* 从键盘上读入个数不确定的整数,并判断正数和负数的个数,输入为0时程序结束
* 无限循环for(;;){
*
* }
*/
public class TextErt02 {
public static void main(String[] args){
Scanner in = new Scanner(System.in);
int x = 0;//记录正数的个数
int y = 0;//记录负数的个数
for(;;){
System.out.println("请输入一个数:");
int num = in.nextInt();
if(num > 0){
x++;
}else if(num < 0){
y++;
}else{
break;
}
}
System.out.println("正数的个数为:" + x + "个");
System.out.println("负数的个数为:" + y + "个");
}
}