while 반복문 5while 반복문 5

Posted at 2013. 11. 6. 18:12 | Posted in 2학기/C언어

#include <stdio.h>

int main()

{

int i, n, sum;


printf("정수를 입력하세요 : ");

scanf("%d", &n);


i = 0;

sum = 0;


while (i <= n)

{

sum += i;

i = i + 2;

}


printf("1부터 %d까지의 합은 %d입니다.", n, sum);


}



'2학기 > C언어' 카테고리의 다른 글

while 반복문 7 - 평균값구하기 센티널값 빼기  (0) 2013.11.07
while 반복문 6  (0) 2013.11.06
while 반복문 4  (0) 2013.11.06
while 반복문 3  (0) 2013.11.06
while 반복문 2  (0) 2013.11.06
//