1. 程式人生 > >廈理OJ——1002:A+B Problem

廈理OJ——1002:A+B Problem

一、題目

Description

Calculate a+b

Input

Two integer a,b (0<=a,b<=10)

Output

Output a+b

Sample Input

1 2

Sample Output

3

Hint

Here is a sample solution for problem using C/GCC: 
#include 
int main() 

int a,b; 
scanf("%d %d",&a, &b); 
printf("%d\n",a+b); 
return 0; 
}

二、解析

emmm這題讓你copy好了(官方讓你copy我也沒辦法QAQ),下面就直接給出C++原始碼

三、原始碼

#include <iostream>
//C語言使用<stdio.h>
using namespace std;

int main()
{
	int a, b;
	//資料輸入
	cin >> a >> b;
	//輸出
	cout << a + b;

	return 0;
}

四、深入研究

大家應該感覺這題沒任何難度吧(廢話 複製貼上的事!),但是實際中我們可能會遇到更大數字的四則運算,使用int型可能無法滿足,有人會說上double啊,來,你來存個PI,存進去算我輸(滑稽),所以可能就要換一種計算的思路,大家可以思考思考,先從加法做起