原创

#include<bits/stdc++.h> using na

浏览:165
更新时间:03-05
发布于:浙江
微信扫一扫
分享至其他
0
表情
漩涡
0/200
全部评论
王睿
爱编程,爱非人哉!
作品说明
#include<bits/stdc++.h> using namespace std; int main() { int a,b; cin>>a>>b; cout<<setw(10)<<a<<endl; cout<<"+"<<setw(9)<<b<<endl; cout<<"----------"<<endl; cout<<setw(10)<<a+b; return 0; }
操作说明
#include<bits/stdc++.h> using namespace std; int main() { int a,b; cin>>a>>b; cout<<setw(10)<<a<<endl; cout<<"+"<<setw(9)<<b<<endl; cout<<"----------"<<endl; cout<<setw(10)<<a+b; return 0; }