#include <stdio.h>
int main() {
printf("원하는 단은? 3\n");
printf("3*9=%d\n", 3*9);
printf("3*8=%d\n", 3*8);
printf("3*7=%d\n", 3*7);
printf("3*6=%d\n", 3*6);
printf("3*5=%d\n", 3*5);
printf("3*4=%d\n", 3*4);
printf("3*3=%d\n", 3*3);
printf("3*2=%d\n", 3*2);
printf("3*1=%d\n", 3*1);
return 0;
}
To embed this program on your website, copy the following code and paste it into your website's HTML: