일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- #CallByAddress
- #1차원배열
- #C++ 연산자함수오버로딩
- html video
- html plug-in
- #3차원배열
- git flow
- border-box
- 하이퍼레저패브릭
- html object
- html id
- #다차원포인터
- html multimedia
- html youtube
- #성적관리프로그램
- #2차원배열
- html5 new tag
- 토큰경제
- docker example
- #android activity
- #JAVASCRIPT
- mac terminal command
- html charset
- relative path
- #bubbleSort
- #binary
- hyperledger transaction
- html code
- #C++ has~a
- #자바상속#자바이즈어#is~a
- Today
- Total
A sentimental robot
Score Management[Two dimensional] 본문
import java.util.Scanner;
public class Hello2 {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
System.out.print("Input the number of students:");
int student;
student=sc.nextInt();
int [][]score=new int[student][4];
float []avg=new float[student];
String []name=new String[student];
String []sconame={"Name","kor","eng","mat","total","avg"};
for(int i=0; i<score.length ;i++)
{
System.out.print(sconame[0]+" : ");
name[i]=sc.next(); // i번째 학생 이름 입력
for(int j=0; j<score[i].length-1 ;j++)
{
System.out.print(sconame[j+1]+" : ");
score[i][j]=sc.nextInt(); // i번째 학생의 국어, 영어, 수학 성적 입력
score[i][3]+=score[i][j]; // 국,영,수 점수 합 구하기
}
avg[i]=score[i][3]/3; // i번째 학생의 평균 구하기
}
//print ALL
for(int i=0; i<score.length ;i++){
System.out.print(sconame[0]+" : ");
System.out.println(name[i]);
for(int j=0; j<score[i].length ;j++)
{
System.out.print(sconame[j+1]+" : ");
System.out.println(score[i][j]);
}
System.out.print(sconame[5]+" : ");
System.out.println(avg[i]);
}
}
}
'Java' 카테고리의 다른 글
The elements of "Class" (0) | 2017.12.28 |
---|---|
Score Management[Three dimensional] (0) | 2017.12.28 |
String class (0) | 2017.12.28 |
foreach문 (0) | 2017.12.28 |
Two dimensional array (0) | 2017.12.28 |