문제를 이해하지 못하겠습니다..

Leesiheun Reply 3 years 48 weeks ago
Your_Code에 들어갈 내용만 넣으면 된다고 하셨는데 Your_code와 그 밑에 printf함수를 빼면 문제에서 원하는대로 출력되는거 아닌가요..?
withcs2 Reply 3 years 48 weeks ago
Your_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*b); Your_Code printf("do not print this\n"); printf("do not print this\n"); } } } 로 채점되는 문제입니다. printf가 안나오게 해보세요! 채점된 코드는 status에서 확인해보실 수 있어요 감사합니다.
Leesiheun Reply 3 years 48 weeks ago
설명해주신 덕분에 이해했습니다 !!! 감사합니다 ㅠㅠㅠㅠㅠ