문제
URL : https://codeup.kr/problemsetsol.php?psid=23
소스코드
// 16진수 구구단?
// input : B
// output : B*1=B
// B*2=16
// B*3=21
// B*4=2C
// B*5=37
// B*6=42
// ...
// B*F=A5
// 설명 : 정수 2개 n, m을 입력받고
// 1부터 n까지, 1부터 m까지 주사위의 모든 경우의 수 출력
#include <iostream>
using namespace std;
int main()
{
int n;
cin >> hex >> n; // A~F까지만 입력
for (int i = 1; i < 16; i++)
cout << hex << uppercase << (n * i) << endl;
return 0;
}