题解 | #简单运算#
简单运算
https://www.nowcoder.com/practice/23c9b22d40fa4d7698a1306fb0c9f975
#include <iostream> using namespace std; int main() { int a=0; int b=0; cin >> a; cin >> b; cout << a+b <<" "; if(a>b){ cout << a-b <<" "; } else { cout << b-a <<" "; } cout << a*b <<" "; if(a>b){ cout << a/b <<" "; } else{ cout << b/a <<" "; } if(a>b) { cout << a%b <<" "; } else { cout << b%a <<" "; } system("pause"); return 0; }