Skip to content

Latest commit

 

History

History

POJ1000-a plus b

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

[POJ] [INDEX] [1000] [A+B Problem]

[Time: 1000MS] [Memory: 10000K] [难度: 水题] [分类: 无]


问题描述

无。

解题思路

水题,直接求解即可。

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;
}

版权声明

 Copyright (C) EXP,2016 License: GPL v3