Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
Tags
- Backjoon
- axi
- boj
- Xilinx
- java
- Zynq
- vitis
- chip2chip
- 리눅스
- baekjoon
- 자격증
- amba
- 코딩테스트
- UNIX
- Bus
- 백준
- FPGA
- Vivado
- 실기
- SQL
- verilog HDL
- 정처기
- verilog
- AMBA BUS
- 정보처리기사
- hdl
- linux
- C++
- Beakjoon
- HDLBits
Archives
- Today
- Total
Hueestory
[2739] 구구단 (C++) 본문
#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