[C언어] Loop Control2 (Snippet)

less than 1 minute read

DESCRIPTION

다음 코드에서 “print a times”를 a번 출력해보자.

INPUT

  • Line 1: a, b가 공백으로 구분되어 한 줄로 주어진다.

OUTPUT

  • Line 1~a: “print a times”를 a번 출력한다.

SAMPLE CODE

#include <stdio.h>
void main(){
    int a, b;
    scanf("%d %d",&a,&b);
    for(int i=0;i<a;i++){
        for(int j=0;j<b;j++){
            printf("print %d times\n",a);
            YOUR_CODE 
            printf("do not print this\n");
            printf("do not print this\n");
        }
    }
}

SAMPLE INPUT

3 5

SAMPLE OUTPUT

print 3 times
print 3 times
print 3 times
break;

간단하쥬?

Comments