竞赛
考级
programmerGYM
#include <iostream> using namespace std; int main() { int a = 4396,b = 2200; cin>>a>>b; cout<<a+b <<endl; cout<<a-b <<endl; cout<<a*b <<endl; cout<<a/b <<endl; cout<<a%b; return 0; }
啊啊啊玩MC的ZHN钟昊能
151****9879
#include <iostream> using namespace std; int main() { int h; int g; h=4396; g=2200; cout<<h+g<<endl; cout<<h-g<<endl; cout<<h*g<<endl; cout<<h/g<<endl; cout<<h%g; return 0; }
༺ཌༀ薛博文ༀད༻
#include<iostream> using namespace std; int main() { int a=4396; int b=2200; cout<<a+b<<endl; cout<<a-b<<endl; cout<<a*b<<endl; cout<<a/b<<endl; cout<<a%b<<endl; return 0; }
T0
LOVEKlee1314
王子豪
共47条