1. 程式人生 > >C/C++ 多組輸入計算a+b

C/C++ 多組輸入計算a+b

//問題及程式碼
/* 
*Copyright (c) 2016,煙臺大學計算機學院 
*All rights reserved. 
*檔名稱:test.cpp 
*作者:李瀟*完成日期:2016年09月8日 
*版本號:v1.0 
* 
*問題描述:輸入多組a,b 計算其合
*輸入描述:輸入多組不同的a,b 
程式輸出: 輸出其多組和
*/ 
//程式碼:
#include <iostream>
using namespace std;
int main()
{
	int a,b;
	while(cin>>a>>b)
	{
		cout<<"a+b="<<a+b<<endl;
	}
    return 0;
}


執行結果:

 

心得體會:

       利用while迴圈,輸入多組資料。體會到了while迴圈的獨特之處