数组随机生成并存储学生成绩

import java.util.*;
public class Geee
{    
    public static void main(String[] args){
//创建一个数组,用来存储是个学生的成绩, 随机生成的,打印输出所有的成绩
Random r=new Random();
int [] score=new int[10];
for (int i=0;i<score.length;i++ )
{
   score[i]=r.nextInt(51)+50;
   System.out.println(score[i]);
}


    }
    

    
}

 

posted @ 2017-03-31 13:49  苏轼的红烧肉  阅读(401)  评论(0编辑  收藏  举报