728x90

 0. [c++] 백준  - 


https://www.acmicpc.net/problem/2588


 1. 풀이



 2. 소스코드


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include<iostream>
#include<string>
 
using namespace std;
 
int main() {
    int a, b;
    cin >> a >> b;
 
    cout << a * (b % 10<< endl;
    cout << a * (b % 100 - b % 10/ 10 << endl;
    cout << a * (b - b % 100/ 100 << endl;
    cout << a * b << endl;
 
 
 
    return 0;
}
cs


 3. 참고




질문이나 지적 있으시면 댓글로 남겨주세요~

도움 되셨으면 하트 꾹!


+ Recent posts