반응형 사칙연산1 백준 알고리즘 10869번 사칙연산 c++ 요약 : A와 B 입력 후 A+B, A-B, A*B, A/B, A%B연산의 결과값 출력 소스코드 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 #include using namespace std; int main(void) { ios_base :: sync_with_stdio(0); cin.tie(0); cout.tie(0); int a,b; cin >> a >> b; cout 2020. 12. 3. 이전 1 다음 반응형