Notice
Recent Posts
Recent Comments
Creative Code
printOne2Ten.c(1부터 10까지 출력) 본문
#include <stdio.h>
int main(void)
{
int i =1;
while (i<=10) {
printf("%d\n",i);
++i;
}
return 0;
}
'C Programming' 카테고리의 다른 글
pyramid.c(별 피라미드모양으로 출력) (0) | 2023.08.01 |
---|---|
printOne2Ten2.c (1에서 10까지 출력) (0) | 2023.08.01 |
printA2Z2 (A부터 Z까지 출력) (1) | 2023.08.01 |
printA2Z.c(A부터 Z까지 출력) (1) | 2023.08.01 |
posZeroNeg2 (양수,음수,0 판단 삼항연산자) (0) | 2023.08.01 |