검색결과 리스트
글
폼안에 성적출력하기
※코딩창
public class Program {
public static void main(String[] args) {
int kor,eng,math;
int total;
float avg;
kor=40;
eng=50;
math=60;
total = kor+eng+math;
avg=total/3.0f;
System.out.println("┌─────────────────────────────┐");
System.out.println("│ 성적 출력 │");
System.out.println("├────┬────┬────┬────┬────┬────┤");
System.out.println("│ 번호 │ 국어 │ 영어 │ 수학 │ 총점 │ 평균 │");
System.out.println("├────┼────┼────┼────┼────┼────┤");
System.out.printf("│%d │%d │%d │%d │%d │%f │\n",1,kor,eng,math,total,avg);
System.out.println("└────┴────┴────┴────┴────┴────┘");
} // %d를 %3d 로 수정하게 되면 100이나 90을 입력해도 (3으로)간격은 같다.
}
※결과창
┌─────────────────────────────┐
│ 성적 출력 │
├────┬────┬────┬────┬────┬────┤
│ 번호 │ 국어 │ 영어 │ 수학 │ 총점 │ 평균 │
├────┼────┼────┼────┼────┼────┤
│1 │40 │50 │60 │150 │50.000000 │
└────┴────┴────┴────┴────┴────┘
'개발 > 코딩' 카테고리의 다른 글
Continue문 (1~100까지 짝수의 합) (0) | 2013.09.12 |
---|---|
2중for문 (구구단) (0) | 2013.09.12 |
While문 Sample (점수 입력해서 평균) (0) | 2013.09.12 |
for문 Sample (1~10까지 덧셈) (0) | 2013.09.12 |
가위 바위 보 게임 (0) | 2013.09.12 |