第6周-統計正數和負數的個數然後計算這些數的平均值

kewlgrl發表於2015-10-06

問題及程式碼:

/*   
*Copyright (c)2015,煙臺大學計算機與控制工程學院   
*All rights reserved.   
*檔名稱:Number.java   
*作    者:單昕昕   
*完成日期:2015年10月6日   
*版 本 號:v1.0   
*問題描述:統計正數和負數的個數然後計算這些數的平均值。
*程式輸入:數。
*程式輸出:正數和負數的個數和這些數的平均值。
*/
import java.util.Scanner; 
public class Test {
	public static void main(String[] args) {
	System.out.println("Enter an int value, the program exits if the input is o:");
	 Scanner input=new Scanner(System.in);
	 int n,c1=0,c2=0;
	 double ave,sum=0,count=0;
	 n=input.nextInt();
	 while(n!=0)
	 {
		 sum+=n;
		 ++count;
		 if(n>0)
			 ++c1;
		 else
			 ++c2;
		 n=input.nextInt();
	 }
	 ave=sum/count;
	 System.out.println("The number of positives is:"+c1);
	 System.out.println("The number of negatives is:"+c2);
	 System.out.println("The total is:"+sum);
	 System.out.println("The average is:"+ave);
	}
}

 

執行結果:

 

知識點總結:
while語句的使用。

 

學習心得:

(⊙v⊙)嗯不好意思我差點又忘了用double。。

相關文章