독도갈매기의 개발 블로그
[알고리즘] 백준 구구단 2739번 본문
#include <bits/stdc++.h>
using namespace std;
int main()
{
int first;
cin >> first;
for (int i = 0; i < 9; i++) {
cout << first << " * " << i + 1 << " = " << first * (i+1) << endl;
}
}
사실상 어려운 문제는 아니지만 for문 입문으로는 좋은 문제입니다.
'알고리즘' 카테고리의 다른 글
[알고리즘] 백준 별 찍기 -1- 2438번 (0) | 2020.09.21 |
---|---|
[알고리즘] 백준 합 8393번 (0) | 2020.09.19 |
[알고리즘] 백준 시험성적 9498번 (0) | 2020.09.18 |
[알고리즘] 백준 윤년 2753번 (0) | 2020.09.16 |
[알고리즘] 백준 두 수 비교하기 1330번 (0) | 2020.09.16 |
Comments