题解 | #简单运算#
简单运算
https://www.nowcoder.com/practice/23c9b22d40fa4d7698a1306fb0c9f975
#include <iostream> using namespace std; int main() { int a, b; cin>>a>>b; if(a>b)//直接连续输出就行,注意空格 cout<<a+b<<" "<<a-b<<" "<<a*b<<" "<<a/b<<" "<<a%b; else cout<<a+b<<" "<<b-a<<" "<<a*b<<" "<<b/a<<" "<<b%a; return 0; }