[C언어/C++] 구구단 예제 (반복문)

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+12*(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+12*(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+12*(i+1));
        i=i+1;
    }
    while(i<9);
}
cs

관련글

제목 작성자 작성일