3 条题解

  • 0
    @ 2022-7-20 19:07:13

    #include <iostream> #include <iomanip>

    using namespace std;

    int main() { int a,b; cin >> a >> b; cout << a <<"+"<< b <<"="<< a + b << endl; cout << setw(7) <<a<<endl; cout <<"+"<< setw(6)<<b<<endl; cout << "-------"<<endl; cout << setw(7) << a+b << endl; return 0; }

    信息

    ID
    15
    时间
    1000ms
    内存
    256MiB
    难度
    5
    标签
    递交数
    195
    已通过
    70
    上传者