標題:
006_簡單的加法器
[打印本頁]
作者:
游東祥
時間:
2015-4-11 11:48
標題:
006_簡單的加法器
輸入兩個整數並存到變數 a, b然後輸出 a + b 的結果
請輸入第一個數字 : 10
請輸入第二個數字 : 25
10 + 25 = 35
複製代碼
作者:
王翔
時間:
2015-4-11 11:59
#include <iostream>
#include <cstdlib>;
using namespace std;
int main()
{
int a;
int b;
cout<<"請輸入第一個數字 : "<<endl;
cin >>a;
cout<<"請輸入第二個數字 :"<<endl;
cin >>b;
cout<< a <<" + "<< b << " = " <<a+b<<endl;
system ("pause") ;
return 0;
}
複製代碼
作者:
黃璽安
時間:
2015-4-11 12:01
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a ;
int b ;
cout<<"請輸入第一個數字 : ";
cin>>a;
cout<<"請輸入第二個數字 : ";
cin>>b;
cout<< a <<" + "<< b <<" = "<< a+b <<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳承勳
時間:
2015-4-11 12:01
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a ;
int b ;
cout << "請輸入第一個數字";
cin >>a;
cout << "請輸入第二個數字";
cin >>b;
cout << a <<" + "<< b <<" = "<< a+b <<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2