200 条题解

  • 0
    @ 2025-11-23 20:51:01

    这是一道最入门的题目,只要输入的两个数加起来就行了。 我们先用万能头文件 #include <bits/stdc++.h> using namespace std; 然后写main函数,main函数是主函数。 再写cin来输入 最后加起来就行了

    最后,上代码

    #c++代码
    #include <bits/stdc++.h>
    using namespace std;
    
    int main() {
        int a,b;
        cin >> a >> b;
        cout << a+b;
        return 0;
    }
    
    • @ 2025-11-23 20:56:55

      希望大家能通过我的思路就会做题目啦

信息

ID
56
时间
1000ms
内存
1024MiB
难度
1
标签
递交数
12363
已通过
5577
上传者