본문 바로가기
백준

[2739] 구구단

by Jcoder 2018. 5. 14.

#include <stdio.h>

int main()
{
int i, n;
scanf("%d", &n);
for(i=1;i<=9;i++)
{
printf("%d * %d = %d\n", n, i, n*i);
}
return 0;
}


'백준' 카테고리의 다른 글

[2439] 별찍기 - 2  (0) 2018.05.14
[2438] 별찍기 - 1  (0) 2018.05.14
[2742] 기찍 N  (0) 2018.05.14
[2741] N 찍기  (0) 2018.05.14
[2839] 설탕배달  (0) 2017.04.21