티스토리 뷰
import java.util.Scanner;
public class testcoding {
public static void main(String[] args) {
int[] kor = new int[3];
int[] eng = new int[3];
int[] math = new int[3];
int[] total = new int[3];
int[] rank = new int[3];
Scanner scan=new Scanner(System.in);
for(int i=0; i<3; i++)
{
System.out.printf("%d번재 국어점수 입력 : ",i+1);
kor[i]=scan.nextInt();
System.out.printf("%d번재 영어점수 입력 : ",i+1);
eng[i]=scan.nextInt();
System.out.printf("%d번재 수학점수 입력 : ",i+1);
math[i]=scan.nextInt();
total[i]=kor[i]+eng[i]+math[i];
}
//등수
for(int i=0; i<3; i++)
{
rank[i]=1;
for(int j=0; j<3; j++)
{
if(total[i]<total[j])
{
rank[i]++;
}
}
}
for(int i=0; i<3; i++)
{
System.out.printf("국어 : %5d 수학 : %5d 영어 : %5d 총점 : %7d 등수 : %3d\n",kor[i],eng[i],math[i],total[i],rank[i]);
}
}
}
배열을 이용하여 과목 3개의 성적을 입력받고 총점과 배열을 이용하여 등수를 매기는 소스.
'Programming? > JAVA' 카테고리의 다른 글
숫자야구게임 (0) | 2012.07.03 |
---|---|
중복 되지 않는 난수 소스 (0) | 2012.07.03 |
구구단 출력(자바의 정석 연습문제4-12번) (1) | 2012.07.03 |
2중 for문을 이용한 별표출력 (0) | 2012.07.03 |
요일 검색/달력 출력 (0) | 2012.07.03 |
- Total
- Today
- Yesterday
- PSP
- 무사헌터G
- GOD EATER2
- C Programming
- Talesweaver_Palshu
- java
- HTML
- Android
- PS VITA
- DnF_카인
- 포세리앙 시밤...
- jdbc
- spring
- oracle
- jsp
- XML
- Unleashed
- League of legends
- 이건사야되!
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |