加载中...

POJ 1000 - A+B Problem


问题描述

参见 http://poj.org/problem?id=1000

解题思路

水题,直接求解即可。

AC 源码

Download Link

/*
    Author:     Exp
    Date:       2017-11-29
    Code:       POJ 1000
    Problem:    a加b
    URL:        http://poj.org/problem?id=1000
*/

#include <iostream>
using namespace std;

int main(void) {
    int a, b;
    cin >> a;
    cin >> b;
    cout << a + b << endl;

    //system("pause");
    return 0;
}

相关资料


文章作者: EXP
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 EXP !
  目录