SWEA 1938 아주 간단한 계산기

Jmnote (토론 | 기여)님의 2018년 4월 15일 (일) 23:10 판 (새 문서: ==개요== ;SWEA-1938 아주 간단한 계산기 ==C++== <source lang='console'> #include <iostream> using namespace std; int main() { int a, b; cin >> a >> b; cout...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

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 }}