public class Do_WhileEx1 {//do while문
  public static void main(String[] args){
    
    int su = 0;
    String str = "Java DoublePlus";
    
    do{
      System.out.println(str);
    }while(su++ < 5); //(주의) semicolon 생략시 오류
    
    System.out.println("\n");
    
    su = 0;
    while(su++ <5){
      System.out.println(str);
//do while문은 일단 한번은 do 문장이 실행된다
//그러므로 원치 않게 한번 더 실행될수 있으므로 사용시 주의를 해야됨
    }
  }
}







학점 구하기


public class Score {//do while문으로 학점구하기
	public static void main(String[] args){
		java.util.Scanner input=new java.util.Scanner(System.in);
		int 국어 =0,영어=0,수학=0,총점=0;
		char 학점=0; //아스키 코드 null문자 값은표현하지만 값은 없음
		float 평균= 0.0f; //소수점 2자리 까지 구하기 위한

		do {
			System.out.print("국어 = ");
			국어 = input.nextInt();
		}while (국어 < 0 || 국어 > 100); //증감식이 없는 대표적사례
		//0에서 100사이 값만 받기

		do {
			System.out.print("영어 = ");
			영어 = input.nextInt();
		}while (영어 < 0 || 영어 > 100);

		do {
			System.out.print("수학 = ");
			수학 = input.nextInt();
		}while (수학 < 0 || 수학 > 100);

		총점 = 국어+영어+수학;
		평균 = 총점/ 3.0f; //뒤에.0f를 생략하면 소수점이 생략됨
		//총점의 자료형 int -> float 형변환뒤 연산 수행

		switch ((int)(평균/10)){
		case 10:
		case 9:
			학점= 'A';
			break;
		case 8:
			학점= 'B';
			break;
		case 7:
			학점= 'C';
			break;
		case 6:
			학점= 'D';
			break;
		default:
			학점= 'F';
		}
		System.out.println(); //단순 줄바꿈
		System.out.println("총점 = "+ 총점);
		System.out.printf("평균 =  %.2f\n",평균);
		//""안에만 출력됨 (printf) %f는 평균을 가져오는 것임
		//.2 는 소수점 2자리 까지 표시하기 위한것
		System.out.println("학점 = "+ 학점 +"학점");

	}
} 





'Java > 조건문&반복문' 카테고리의 다른 글

break label문  (0) 2012.04.10
break 문  (0) 2012.04.10
while문  (0) 2012.04.10
for 문  (0) 2012.04.09
swich  (0) 2012.04.09

+ Recent posts