開發了一個程序,功能如下: 獲取2~32之間的6個整數,並取得這6個偶數的和。
本例中引用了Math.random(),但是實際上實現的是Random.nextDouble()。 只是對於一般的使用random的情況,較Random類,我們習慣使用Math.random() mainly because it si simpler to use
- /**
- * 開發了一個程序,功能如下:
- * 獲取2~32之間的6個整數,並取得這6個偶數的和。
- * <p>
- * 本例中引用了Math.random(),但是實際上實現的是Random.nextDouble()。
- * 只是對於一般的使用random的情況,較Random類,我們習慣使用Math.random() mainly because it is simpler to use
- * @author HAN
- *
- */
- public class DataTreatementClassApps {
-
-
- public static void main(String[] args) {
- int i=0;
- int sum=0;
- while(i<6){
- int a=(int) (2+Math.random()*30);
-
- if (a%2==0){ //取余方法
- System.out.println(a);
- sum=sum+a;
- i++;
- }
-
- }
- System.out.println("六個偶數的和:"+sum);
-
-
- }
-
- }