Java数组


public class sz {

  /**
  * @param args
  */
  public static void main(String[] args) {
    // TODO Auto-generated method stub
    float score[]=new float[4];
    score[0]=74.6f;
    score[1]=79.3f;
    score[2]=76.8f;
    score[3]=77.5f;
    System.out.print("学生成绩是");
    for(int i=0;i<=3;i++){
      System.out.print(score[i]+" ");
    }
  }

}

posted on 2024-11-29 13:42  蓯芯開矢  阅读(1)  评论(0编辑  收藏  举报