while 반복문 2while 반복문 2
Posted at 2013. 11. 6. 17:48 | Posted in 2학기/C언어#include <stdio.h>
int main()
{
int n;
int i=1;
printf("출력하고 싶은 단 : ");
scanf("%d", &n);
while (i <= 9)
{
printf("%d*%d = %d \n", n, i, n*i);
i++;
}
}
'2학기 > C언어' 카테고리의 다른 글
while 반복문 4 (0) | 2013.11.06 |
---|---|
while 반복문 3 (0) | 2013.11.06 |
while 반복문 (0) | 2013.11.06 |
4차 10번 (0) | 2013.10.31 |
4차 9번 (0) | 2013.10.31 |