wilhe문 사용
n은 정수형 변수로 선언할 것
다음 n값들에 대해 테스트할 것
0, 1, 5, 10, -4
public class P003 {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
int a=1,b=0,c=0;
// a=초기값,b=목적값,c=합
while(a<=b){
c=c+a;
a++;
}
System.out.println(c);
a=1; //초기값
b=1; //목적값 1
c=0; //초기화
while(a<=b){
c=c+a;
a++;
}
System.out.println(c);
a=1; //초기값
b=5; //목적값 5
c=0; //초기화
while(a<=b){
c=c+a;
a++;
}
System.out.println(c);
a=1; //초기값
b=10; //목적값 10
c=0; //초기화
while(a<=b){
c=c+a;
a++;
}
System.out.println(c);
a=1; //초기값
b=-4; //목적값 -4
c=0; //초기화
while(a<=b){
c=c+a;
a++;
}
System.out.println(c);
}
}
'C.E > Java' 카테고리의 다른 글
2n+1 (n=-3 ~ 3)로 만들어지는 수열을 출력하시오 (0) | 2013.10.19 |
---|---|
m부터 n까지의 합을 계산하여 출력하는 자바프로그램을 작성 (0) | 2013.10.19 |
1부터 10까지의 곱을 계산하여 출력하는 자바프로그램을 작성 (0) | 2013.10.19 |
1부터 100까지의 모든 홀수들의 합을 계산하여 출력하는 자바 (0) | 2013.10.19 |
1부터 100까지의 합을 계산하여 출력하는 자바 (0) | 2013.10.19 |