String[][] kem = new String[10][3];

String star = "*";

int kor = 7;

int math = 6;

int eng = 5;

for(int i = 0; i < 10; i++){  

for(int j = 0; j < 3; j++){

kem[i][j] = star;

System.out.print(kem[i][j] + " ");

}

System.out.println();

}



* * *

* * *

* * *

* * *

* * *

* * *

* * *

* * *

* * *

* * *

==================



여기까지 내가 짠건데 ㅠㅠ 저 국어 수학 영어 점수마다 별이 찍혀야해 ㅠㅠ 

그니까 국어 80점이면 별 8개 수학30점이면 별 3개 ㅠㅠ 이딴식으루

힌트점 횽들아..