题解

5 条题解

  • 4
    @ 2020-07-01 21:23:35

    此OJ中的唯一一道水题(((
    下面带来一种神奇做法~

    #include <bits/stdc++.h>
    using namespace std;
    #define stO int a, b;
    #define b6e0 cin >> a >> b;
    #define Orz int c=a+b;
    #define WTRL cout << c << endl;
    int main(){
        stO b6e0 Orz //b6e0大佬太强了!
        WTRL         //而我太弱了!!!
        return 0;
    }
    
  • 2
    @ 2020-07-02 22:13:37

    我会PHP语言。
    接下来奉上此题代码。

    <?php
    $input=trim(file_get_contents("php://stdin")); //输入
    list($a,$b)=explode(' ',$input); //改装成序列并赋值到a和b
    echo $a+$b; //输出答案
    ?>
    
  • 1
    @ 2020-07-29 10:18:04
    #include <bits/stdc++.h>
    using namespace std;
    
    int main()
    {
        int a,b;
        cin>>a>>b;
        cout<<a+b;
        return 0;
    }
    
  • 0
    @ 2021-02-13 14:26:22

    pascal用integer会爆

    Var
    a, b : integer;
    Begin
    read(a, b);
    writeln(a + b);
    End.

  • -1
    @ 2020-07-26 10:29:53

    蒟蒻只会c++
    所以就只能蒻蒻得提交最水的代码。
    \(\color{black}\colorbox{black}{其实是来试试玩的(逃}\)
    废话不多说(\(\color{black}\colorbox{black}{好像已经说了很多了}\))终于来挂代码了呢~

    /*版权所有,拷贝必究!*/
    /*若想获得,请联系许希泉*/
    #include<bits/stdc++.h>
    #pragma GCC optimize("O999")
    const int INF = 0x3f3f3f3f;
    int maxn=5000005;
     
    using namespace std;
    struct node{//结构体,是缺省源里的 
    
    };
    bool is_pal(string a)//判回文,也是缺省源里的 
    {
        string s=a;
        reverse(s.begin(),s.end());
        if(s==a)
        return true;
        else
        return false;
    }
    bool is_prime(int n)//判质数 
    {
        if(n==1)
        return false;
        if(n==2||n==3)
        return true;
        if(n%6!=1&&n%6!=5)
        return false;
        for(register int i=5;i*i<=n;i+=6)
        if(n%i==0||n%(i+2)==0)
        return false;
        return true;
    }
    int main()
    {
        //freopen(".in","r",stdin);
        //freopen(".out","w",stdout);
        ios::sync_with_stdio(0);
        string s1,s2,s;
        int stO,Orz; 
        cin>>stO>>Orz;
        cout<<stO + Orz;//"+"指的是b6e0大佬(滑稽 
        return 0;
    }
    
    
  • 1

信息

ID
1001
难度
1
分类
(无)
标签
(无)
递交数
98
已通过
24
通过率
24%
上传者