永发信息网

java求输入数的正负数个数和所有和

答案:1  悬赏:10  手机版
解决时间 2021-04-05 10:47
  • 提问者网友:孤凫
  • 2021-04-04 18:27
java求输入数的正负数个数和所有和
最佳答案
  • 五星知识达人网友:千夜
  • 2021-04-04 19:43
import java.util.*;
public class geshu {

public static void main(String[] args) {
// TODO Auto-generated method stub
System.out.println("enter");
Scanner input = new Scanner(System.in);
int score = input.nextInt();
int positive=0,negative=0,total=0;
while(score != 0) {
if(score>0)
positive++;
else
negative++;
total += score;
score = input.nextInt();
}
System.out.println(positive +"----"+ negative +"----"+ total);

}

}追问为什么还要加一句score=input.nextint
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯