2011-04-04 16:28:54Morris
a002. 簡易加法
請寫一個程式,讀入兩個數字,並求出它們的和。
輸入說明
:
每一組輸入有兩個整數(int)
輸出說明
:
輸出該兩整數的和(int)
範例輸入 :
5 10 1 2
範例輸出 :
15 3
/**********************************************************************************/
/* Problem: a002 "簡易加法" */
/* Language: C */
/* Result: AC (0ms, 254KB) on ZeroJudge */
/* Author: restart at 2011-04-04 16:27:43 */
/**********************************************************************************/
#include<stdio.h>
main()
{
int a, b;
while(scanf("%d %d",&a, &b)==2)
printf("%d\n",a+b);
return 0;
}
上一篇:a001. 哈囉
下一篇:a003. 兩光法師占卜術