728x90

1. while 문

public class chp4_5_1_while {
	public static void main(String[] args) throws java.io.IOException{
		int s=1, i=1;
		int n = System.in.read() - '0';
		
		while(i<=n) {
			s = s * i;
			++i;
		}
		System.out.println(s);
	}
}

2. do while 문

public class chp4_5_1_do_while {
	public static void main(String[] args) throws java.io.IOException{
		int s=1, i=1;
		int n = System.in.read() - '0';
		
		do {
			s = s * i;
			++i;
		} while(i<=n);
		System.out.println(s);
	}
}

 

 

반응형
  • 네이버 블러그 공유하기
  • 네이버 밴드에 공유하기
  • 페이스북 공유하기
  • 카카오스토리 공유하기