프로그래밍/알고리즘

정올 548 : 반복제어문2 - 자가진단8

Ludere 2019. 3. 12. 23:34



#include <stdio.h>


int main(){

int i,j;

for(int i=2;i<=4;i++){

for(int j=1;j<=5;j++){

printf("%d * %d =%3d   ",i,j,i*j);

}

printf("\n");

}

}


반응형