SWEA 1938 아주 간단한 계산기

Jmnote (토론 | 기여)님의 2018년 4월 16일 (월) 19:22 판 (→‎개요)

1 개요

SWEA-1938 아주 간단한 계산기

2 테스트셋

표준입력
8 3
표준출력
11
5
24
2

3 C++

#include <iostream>
 
using namespace std;
 
int main() {
    int a, b;
    cin >> a >> b;
 
    cout << a+b << endl;
    cout << a-b << endl;
    cout << a*b << endl;
    cout << a/b << endl;
}

4 같이 보기

5 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}