for 문을 이용한 구구단 2단
1 2 3 4 5 6 7 8 9 10 | #include <stdio.h> int main(void) { int i; i=0; for(i=0; i<9; i++) printf(“2 x %d = %d\n”, i+1, 2*(i+1)); } | cs |
while 문을 이용한 구구단 2단
1 2 3 4 5 6 7 8 9 10 11 12 13 | #include <stdio.h> int main(void) { int i; i=0; while(i<9) { printf(“2 x %d = %d\n”, i+1, 2*(i+1)); i=i+1; } } | cs |
do while 문을 이용한 구구단 2단
1 2 3 4 5 6 7 8 9 10 11 12 13 | #include <stdio.h> int main(void) { int i; i=0; do { printf(“2 x %d = %d\n”, i+1, 2*(i+1)); i=i+1; } while(i<9); } | cs |