while 반복문 6while 반복문 6

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

#include <stdio.h>

int main()

{

int i, n, sum;



i = 0;

sum = 0;


while (i < 5)

{

printf("값을 입력하시오: ");

scanf("%d", &n);

sum = sum + n;

i++;

}


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


}




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

같은자리 공란만들기  (0) 2013.11.07
while 반복문 7 - 평균값구하기 센티널값 빼기  (0) 2013.11.07
while 반복문 5  (0) 2013.11.06
while 반복문 4  (0) 2013.11.06
while 반복문 3  (0) 2013.11.06
//