SWEA 1938 아주 간단한 계산기

Jmnote (토론 | 기여)님의 2018년 4월 15일 (일) 23:11 판 (Jmnote님이 SWEA-1938 문서를 SWEA-1938 아주 간단한 계산기 문서로 이동했습니다)

1 개요

SWEA-1938 아주 간단한 계산기

2 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;
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}