Hueestory

[2739] 구구단 (C++) 본문

PS(중단)/BOJ

[2739] 구구단 (C++)

히명 2024. 4. 25. 14:41
#include <iostream>
#include <algorithm>

using namespace std;

int main()
{
	ios::sync_with_stdio(false);
	cin.tie(NULL);
	cout.tie(NULL);

	int n; cin >> n;

	for (int i = 1; i <= 9; i++)
		cout << n << " * " << i << " = " << n * i << endl;	

	return 0;
}

 

 

'PS(중단) > BOJ' 카테고리의 다른 글

[2753] 윤년 (C++)  (0) 2024.04.25
[2741] N 찍기 (C++)  (0) 2024.04.25
[2675] 문자열 반복 (C++)  (0) 2024.04.25
[2577] 숫자의 개수 (C++)  (0) 2024.04.25
[2562] 최댓값 (C++)  (0) 2024.04.25
Comments