[백준] #2739 구구단

kkily·2021년 6월 25일
0

[알고리즘]

목록 보기
15/102

문제링크

#include <iostream>

using namespace std;

int main()
{
    ios_base::sync_with_stdio(0);
    cin.tie(0), cout.tie(0);
    int a;
    cin >> a;
    for (int i = 1; i < 10; i++)
    {
        cout << a << " * " << i << " = " << a * i << endl;
    }
}
profile
낄리의 개발 블로그╰(*°▽°*)╯

0개의 댓글