자바 2차원 배열

in coding •  6 years ago  (edited)

2차원 배열의 개념이해

  • 2차원 정방형 배열
  • 2차원 정방형 배열 연습

  • 2차원 비 정방형 배열

-2차원 비 정방형 배열 연습

배열연습문재
// 정수형 2차원배열 score
int[][] score = {
{85, 60, 70},
{90, 95, 80},
{75, 80, 100},
{80, 70, 95},
{100, 65, 80}
};
//출력
// 각각의 학생 각점수 , 총점 , 평균 이 나오도록 모든 학생을 출력하시오
int avg = 0;

    for (int r=0; r < score.length; r++) {
        System.out.print((r+1)+"번 학생의 점수는 : ");
        int sum = 0;
        for (int c=0; c < score[c].length; c++) {
            System.out.print(score[r][c]+"\t");
            sum += score[r][c];

// avg = sum/(score[c].length);
}
avg = sum/(score[r].length);
System.out.print("총점은 : "+sum+"\t");
System.out.print("평균은 : "+avg);

        System.out.println();
    }
Authors get paid when people like you upvote their post.
If you enjoyed what you read here, create your account today and start earning FREE STEEM!