標題:
002_四則運算
[打印本頁]
作者:
游東祥
時間:
2015-3-21 11:03
標題:
002_四則運算
用 + - * / 運算 10 與 5
顯示範例:
15
5
50
2
複製代碼
作者:
王翔
時間:
2015-3-21 11:15
#include <iostream>
#include <cstdlib>;
using namespace std;
int main()
{
cout<< 10 + 5<< endl;
cout<< 10 - 5<< endl;
cout<< 10 * 5<<endl;
cout<< 10 / 5<<endl;
system ("pause") ;
return 0;
}
複製代碼
作者:
黃璽安
時間:
2015-3-21 11:16
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout << 10 + 5 << endl;
cout << 10 - 5 << endl;
cout << 10 * 5 << endl;
cout << 10 / 5 << endl; // 你的程式碼
system("pause");
return 0;
}
複製代碼
作者:
吳承勳
時間:
2015-3-21 11:17
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<< 10 + 5 << endl;
cout<< 10 - 5 << endl;
cout<< 10 * 5 << endl;
cout<< 10 / 5 << endl;
system("pause");
return 0 ;
}
複製代碼
作者:
林廷翰
時間:
2015-3-21 11:53
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<< 10 + 5 <<endl;
cout<< 10 - 5 <<endl;
cout<< 10 * 5 <<endl;
cout<< 10 / 5 <<endl;
system("paause");
return 0;
}
複製代碼
作者:
林廷翰
時間:
2015-3-30 21:08
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2