九度題目1000:計算a+b
阿新 • • 發佈:2019-02-09
題目描述:
求整數a,b的和。
輸入:
測試案例有多行,每行為a,b的值。
輸出:
輸出多行,對應a+b的結果。
樣例輸入:
1 2
4 5
6 9
樣例輸出:
3
9
15
#include <stdio.h>
int main ( int argc, char** argv )
{
double duration;
int a,b;
while(scanf("%d %d",&a,&b)!=EOF)
{
printf("%d\n",a+b);
}
return 0;
}
測試程式的時候,如果想了解程式執行的時間
可以用clock()函式:
#include <stdio.h>
#include <time.h>
int main ( int argc, char** argv )
{
clock_t start, finish;
start = clock();
double duration;
int a,b;
while(scanf("%d %d",&a,&b)!=EOF)
{
printf("%d\n",a+b);
finish=clock();
duration = (double )(finish - start) / CLOCKS_PER_SEC;
printf( "takes %f seconds\n", duration );
}
return 0;
}
截圖: