新手村 洛谷的第一个任务 A+B problem

来源:互联网 发布:华中科技大学软件中心 编辑:程序博客网 时间:2024/06/05 07:37

不瞒大家,hdu上面的A+B problem,我都不知道刷过多少条了。各大OJ的A+B problem我可能都碰过。

#include <cstring>#include <iostream>#include <cmath>#include <stdio.h>#include <stdlib.h>#include <string>using namespace std;int main() {    int a, b;    cin >> a >> b;    cout << a + b << endl;    return 0;}

我看了题解一脸懵逼,原来大家这么会玩。

原创粉丝点击