์ ์ธ๋ฐฉ๋ฒ
(1) ๋ฐ์ดํฐํ ๋ณ์๋ช [][] = new ๋ฐ์ดํฐํ[][];
(2) ๋ฐ์ดํฐํ[][] ๋ณ์๋ช = new ๋ฐ์ดํฐํ[][];
ex) int data[][] = new int[3][5]; //3ํ 5์ด
+์ด๊ธฐํ
(1) ๋ฐ์ดํฐํ[][] ๋ณ์๋ช = {{0,0,0,0},{0,0,0,0}};
=> 2ํ 4์ด [2][4]
//๋ค์์ ๋ฐฐ์ด์ ์์ฑํ ํ ์ถ๋ ฅํ์์ค.
//10 10 10
//20 20 20
//30 30 30
//40 40 40
public class ArrayExam1 {
public static void main(String[] args) {
int num[][] = new int[4][3]; //4ํ 3์ด
for(int i = 0; i < num.length;i++) {
for(int j = 0; j < num[i].length; j++) {
System.out.print(10+(i*10)+"\t");
}
System.out.println();
}
}
}
//ํ์ฉ์์
/*
* 1.์
๋ ฅ intputScore
* 2.์ด์ getSumScore
* 3.์์ getRank
* 4.์ถ๋ ฅ printResult
*/
/*
===========================================
* [0] => [0|0] [0|1] [0|2] [0|3] [0|4]
* [1] => [1|0] [1|1] [1|2] [1|3] [1|4]
* [2] => [2|0] [2|1] [2|2] [2|3] [2|4]
* [3] => [3|0] [3|1] [3|2] [3|3] [3|4]
* [4] => [4|0] [4|1] [4|2] [4|3] [4|4]
============================================
์กฐ๋ฒํธ ์ดํด๋ ์ฐฝ์๋ ์์ฑ๋ ์ด์ ๋ฑ์
===========================================
*1 [0] => [0|0] [0|1] [0|2] [0|3] [0|4]
*2 [1] => [1|0] [1|1] [1|2] [1|3] [1|4]
*3 [2] => [2|0] [2|1] [2|2] [2|3] [2|4]
*4 [3] => [3|0] [3|1] [3|2] [3|3] [3|4]
*5 [4] => [4|0] [4|1] [4|2] [4|3] [4|4]
============================================
*/
import java.util.Scanner;
public class Array2_score1 {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int score[][]=new int[5][5]; // ์ ์ธ๋ถ๋ถ 5ํ 5์ด
intputScore(score); //์
๋ ฅ
getSumScore(score); //์ด์
getRank(score); //์์
printResult(score); //์ถ๋ ฅ
}
public static int[][] intputScore(int[][] score) { //์
๋ ฅ
Scanner scan=new Scanner(System.in);
for(int i=0; i<score.length; i++){ //์
๋ ฅ์ 5๋ฒ ๋ฐ์ ์ ์๋๋ก ๋ฐฐ์ด ๊ธธ์ด 0,1,2,3,4 ๋ฐ๋ณต
System.out.println((i+1)+"ํ์ ํญ๋ชฉ๋ณ ์ ์ ์
๋ ฅ,\n๋จ(0๋ถํฐ 20๊น์ง ์
๋ ฅ ๊ฐ๋ฅ)");
//i+1์ 1์กฐ 1+1์กฐ 2+1์กฐ๊ฐ ๋๋๋ก => 0๋ถํฐ ์์ํ๋ฏ๋ก +1์ ํด์ค๋ค.
for(int j=0; j<score.length-2; j++){ //๋ฐฐ์ด 5๊ฐ ์ค 3๊ฐ๋ง ๋ฐ์์ผ ํ๋ฏ๋ก (์์ฑ๋ ์ฐฝ์์ฑ ์ดํด๋๋ง ๋ฐ์ ์ ์๋๋ก*์ด์ ์์ฐจ ์ ์ธ)
switch(j+1) { //if๋ฌธ์ด๋ ๋น์ทํ๋ฐ ๊ดํธ ์์ด ๊ฐ์ด ์กฐ๊ฑด์ด๋ค. => i๋ฐฐ์ด 1๋ฒ ์คํ ํ ๋ j๋ฐฐ์ด 3๋ฒ ์
๋ ฅ๋ฐ์ ์ ์๋๋ก, j๋ฐฐ์ด ์ ์ฆ๊ฐ ๋๋ฏ๋ก 1ใ
ก2ใ
ก3์ด ๋ค ์
๋ ฅํ๊ฒ ๋จ
case 1: System.out.print("์์ฑ๋ ์
๋ ฅ:"); break;
case 2: System.out.print("์ฐฝ์์ฑ ์
๋ ฅ:"); break;
case 3: System.out.print("์ดํด๋ ์
๋ ฅ:"); break;
}
score[i][j]=scan.nextInt();
while(score[i][j]>20||score[i][j]<0) { //20์ด๊ณผ ์ด๊ฑฐ๋ 0๋ฏธ๋ง์ผ ์ ๋ค์ ์
๋ ฅ
System.out.println("๋ค์ ์
๋ ฅ:");
score[i][j]=scan.nextInt();
}
}
}
return score; //์
๋ ฅ๋ฐ์ ๊ฐ ์กฐ์ ์์ฑ๋ ์ฐฝ์์ฑ ์ดํด๋๋ฅผ main๋ฉ์๋์ ๋ฆฌํด ์์ผ์ค๋ค.
}
public static int[][] getSumScore(int[][] score) { //์ด์
//์ด์
int[] sum=new int[5]; //5ํ์ ์ ์๋ฅผ ๋ฃ์ ๋ฐฐ์ด
int temp; //์ด์ ์ ๋ฃ์ ๋น๊ณต๊ฐ
for(int i=0; i<score.length; i++){ //5ํ์ด์ฌ์ 5๋ฒ ๋ฐ๋ณต
for(int j=0; j<score.length-1; j++){ //์์ฑ.์ฐฝ์.์ดํด๋ => ์ด์ ๊น์ง ์ฌ์ฉ๋จ์ผ๋ก (์์ฐจ๋ง ๋นผ๊ณ ) -1 => ๋ฐ์ [i][3]์ด ์์ด์
sum[i]+=score[i][j]; // 5ํ์ ๊ฐ๊ฐ์ ์ ์๋ฅผ ๋์
์์ผ์ค๋ค. ์) i=0๋ฒ ๋ฐ๋ณต ํ ์ (์ฒซ ๋ฒ์งธ ํ ๋ฐ๋ณต) sum[0]์ ๊ฐ๊ฐ์ ์ ์ ๋์
, ๋ค์์ sum[1]์ 2ํ์ ์๋์
temp = sum[i]; //tmep์ ์ด์ ์ ๋ฃ์ด ๋๋ค. //์์น๋ฅผ ํ ๋ฒ๋ง์ ๋ฐ๊พธ์ง ๋ชปํ๋ค. ๊ทธ๋์ ๋น๊ณต๊ฐ์ด ์์ด์ผ ๋ฐ๊ฟ ์ ์๋ค.
sum[i]=score[i][3]; //๋น๊ณต๊ฐ์ด ๋ sum์ ์ด์ ์ ๋ฃ์ด์ค๋ค. ์)score[1][i]์ ๊ฐ๊ฐ score[1][0] = 1์กฐ์ ์ด์ ์๋ฆฌ
score[i][3]=temp; //๋น๊ณต๊ฐ์ด ๋ score์ ์ด์ ์ ๋์
ํ๋ค.
}
}
return score;
}
public static int[][] getRank(int score[][]){ //์์
for(int i = 0; i<score.length; i++) { //5ํ 5๋ฒ ๋ฐ๋ณต
score[i][4]=1; //์์ฐจ์ 1์ ๊ฐ๊ฐ ๋์
์์ผ์ค๋ค.
for(int j = 0; j<score.length; j++) { //5๋ฒ ๋ฐ๋ณต => ์ด์ ์์ฐจ๋ฅผ ๊ตฌํ๊ธฐ ์ํด์ ์ ์ฐฝ ์ด ์ด ์(5์ด)๊น์ง ๋ค ๋ฐ๋ณต์์ผ์ผ ํ๋ค.
if(score[i][3]<score[j][3]) { //๋ ์กฐ๋ฅผ ๋น๊ตํด์ ๋ค์ ์๋ ์ซ์๊ฐ ๋ ํฌ๋ฉด ์์กฐ์ ์ซ์๋ฅผ ์ฌ๋ ค์ค๋ค.
score[i][4]++; //์์ ํญ๋ชฉ์ ๋ฐฐ์ด๋ฒํธ๋ฅผ ์ฆ๊ฐ์์ผ ์์๋ฅผ ๋ง๋ ๋ค.
}
}
}
return score;
}
public static void printResult(int[][] score) { //์ถ๋ ฅ
int team=0; //์ต๊ณ ์กฐ
int max=0; //์ต๊ณ ์กฐ ์ ์
System.out.println("์กฐ๋ฒํธ\t์์ฑ๋\t์ฐฝ์์ฑ\t์ดํด๋\t์ด์ \t์์ฐจ");
System.out.println("==============================================");
for(int i=0; i<score.length; i++){ //์กฐ 5๋ฒ
System.out.print((i+1)+"์กฐ"+"\t"); //1-5์กฐ ์ถ๋ ฅ
for(int j =0; j<score[i].length; j++) { //5์ด
System.out.print(score[i][j]+"\t"); //์ ๋ถ ์ถ๋ ฅ
}
System.out.println(""); // ํ ์ค ๋์ฐ๊ธฐ
if(score[i][4]==1) { //๋ฑ์๊ฐ 1๋ฑ์ด๋ฉด
team=(i+1); // i๊ฐ 0๋ถํฐ ์์ํจ์ผ๋ก i+1์ ํด์ค๋ค.
max=score[i][3]; //[i][4]๊ฐ 1๋ฑ์ผ๋ ์ด์ ์ธ [i][3]์ด ์ต๊ณ ์ ์ด ๋๋ค.
}
}
System.out.println("=================================================");
System.out.println("\n"+"์ต๊ณ ํ:"+team+"๋ฒ์งธ ํ "+"์ ์:"+max);
}
}