반응형
#include<iostream>
using namespace std;
int main() {
int a, b;
int first, second, third;
cin >> a >> b;
third = b / 100;
second = (b - third*100) / 10;
first = b % 10;
cout << a * first << endl << a * second << endl << a * third << endl;
cout << a * b;
return 0;
}
이것이 나의 최선인가
반응형
'BaekJoon > C++' 카테고리의 다른 글
10871 : X보다 작은 수 (C++) (0) | 2020.10.22 |
---|---|
[백준] 14681 : 사분면 고르기 (C++) (0) | 2020.10.19 |
[백준] 1008 : A/B (C++) (0) | 2020.10.19 |
[백준] 10171 : 고양이 (C++) (0) | 2020.10.19 |
[백준] 2557 : Hello World (C++) (0) | 2020.10.19 |
댓글