https://www.acmicpc.net/problem/10998
10998번: A×B
두 정수 A와 B를 입력받은 다음, A×B를 출력하는 프로그램을 작성하시오.
www.acmicpc.net
참.. 이 문제도 올리기가 민망하다.
#include <iostream>
using namespace std;
int main(){
int a,b;
int c;
cin >> a >> b;
c = a*b;
cout << c << endl;
return 0;
}
'OnlineJudge' 카테고리의 다른 글
Baek Joon Algorithm(백준 알고리즘): 11279번 (0) | 2019.08.27 |
---|---|
Baek Joon Algorithm(백준 알고리즘): 10871번 (0) | 2019.08.27 |
Baek Joon Algorithm(백준 알고리즘): 10869번 (0) | 2019.08.27 |
Baek Joon Algorithm(백준 알고리즘): 10828번 (0) | 2019.08.27 |
Baek Joon Algorithm(백준 알고리즘): 10430번 (0) | 2019.08.27 |