VS Code C++环境程序代码编写的万能开头

#include <bits/stdc++.h>
using namespace std;
int main() {
    int a, b;
    while (cin >> a >> b) { // 注意 while 处理多个 case
        cout << a + b << endl;
    }
}
// 64 位输出请用 printf("%lld")

灵魂就是:

#include <bits/stdc++.h>

using namespace std;

猜你喜欢

转载自blog.csdn.net/m0_56603583/article/details/129720737