標題:
五則運算 (一)
[打印本頁]
作者:
鄭繼威
時間:
2022-11-25 00:17
標題:
五則運算 (一)
本帖最後由 鄭繼威 於 2022-11-25 19:24 編輯
+ 加
- 減
* 乘
/ 除(取商數)
% 取餘數
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=10, y=3;
cout<<"當x等於"<<x<<", y等於"<<y<<"時..."<<endl;
cout<<"x+y="<<x+y<<endl;
cout<<"x-y="<<x-y<<endl;
cout<<"x*y="<<x*y<<endl;
cout<<"x/y="<<x/y<<endl;
cout<<"x%y="<<x%y<<endl;
system("pause");
return 0;
}
複製代碼
作者:
曹祁望
時間:
2022-11-25 19:29
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=4545;
int y=46846464;
cout<<"當x等於"<<x<<",y等於"<<y"時..."<<endl;
cout<<"x+y="<<x+y<<endl;
cout<<"x-y="<<x-y<<endl;
cout<<"x*y="<<x*y<<endl;
cout<<"x/y="<<x/y<<endl;
cout<<"x%y="<<x%y<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張絜晰
時間:
2022-11-25 19:31
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=10, y=3;
cout<<"when x equals "<<x<<", and y equals "<<y<<":"<<endl;
cout<<"x/y="<<x/y<<endl;
cout<<"x*y="<<x*y<<endl;
cout<<"x+y="<<x+y<<endl;
cout<<"x-y="<<x-y<<endl;
system ("pause");
return 0;
}
複製代碼
作者:
邵凡榛
時間:
2022-11-25 19:35
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=10,y=3;
cout<<"當x等於"<<x<<",y="<<y<<"時..."<<endl;
cout<<"x+y="<<x+y<<endl;
cout<<"x-y="<<x-y<<endl;
cout<<"x*y="<<x*y<<endl;
cout<<"x/y="<<x/y<<endl;
cout<<"x%y="<<x%y<<endl;
system("pause");
return 0;
}
複製代碼
作者:
廖秝瑜
時間:
2022-11-25 19:35
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=10, y=3;
cout<<"當x等於"<<x<<", y等於"<<y<<"時..."<<endl;
cout<<"x+y="<<x+y<<endl;
cout<<"x-y="<<x-y<<endl;
cout<<"x*y="<<x*y<<endl;
cout<<"x/y="<<x/y<<endl;
cout<<"x%y="<<x%y<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡沛倢
時間:
2022-11-25 19:35
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=16, y=21;
cout<<"當x等於"<<x<<", y等於"<<y<<"時..."<<endl;
cout<<"x+y="<<x+y<<endl;
cout<<"x-y="<<x-y<<endl;
cout<<"x*y="<<x*y<<endl;
cout<<"x/y="<<x/y<<endl;
cout<<"x%y="<<x%y<<endl;
system("pause");
return 0;
}
複製代碼
作者:
呂宗晉
時間:
2022-11-25 19:35
#include<iostream>
#inculde<cstdlib>
using namespace std;
int main()
{
int x=10, y=3;
cout<<"當x等於"<<x<<", y等於"<<y<<"時..."<<endl;
cout<<"x+y="<<x+y<<endl;
cout<<"x-y="<<x-y<<endl;
cout<<"x*y="<<x*y<<endl;
cout<<"x/y="<<x/y<<endl;
cout<<"x%y="<<x%y<<endl;
system("pause")
return 0;
}
複製代碼
作者:
何權晉
時間:
2022-11-25 19:36
#include <iostream>
using namespace std;
int main()
{
int x=69, y=96;
cout<<"when x equals "<<x<<", and y equals "<<y<<endl;
cout<<"x+y"<<x+y<<endl;
cout<<"x-y="<<x-y<<endl;
cout<<"x*y="<<x*y<<endl;
cout<<"x/y="<<x/y<<endl;
cout<<"x%y="<<x%y<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳寶綸
時間:
2022-11-25 19:37
本帖最後由 陳寶綸 於 2022-11-25 20:16 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=10, y=3;
cout<<"當x等於"<<x<<", y等於"<<y<<"時..."<<endl;
cout<<"x+y=13"<<x+y<<endl;
cout<<"x-y=7"<<x-y<<endl;
cout<<"x*y=30"<<x*y<<endl;
cout<<"x/y=3"<<x/y<<endl;
cout<<"x%y=1"<<x%y<<endl;
system("pause");
return 0;
}
複製代碼
作者:
鄭繼威
時間:
2022-11-25 19:37
8
作者:
盧玄皓
時間:
2022-11-25 19:38
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=10,y=3
cout<<"當x等於"<<x<<",y等於"<<y<<"時..."<<endl;
cout<<"x+y"<<x+y<<endl;
cout<<"x-y="<<x-y<<endl;
cout<<"x*y="<<x*y<<endl;
cout<<"x/y="<<x/y<<endl;
cout<<"x%y"<<x%y<<endl;
system("pause");
return 0;
複製代碼
作者:
黃子豪
時間:
2022-11-25 19:39
#include<iostream>
using namespace std;
int main()
{
int x=10, y=3;
cout<<"當x等於"<<x<<",y等於"<<y<<"時"<<endl;
cout<<"x+y="<<x+y<<endl;
cout<<"x-y="<<x-y<<endl;
cout<<"x*y="<<x*y<<endl;
cout<<"x/y="<<x/y<<endl;
cout<<"x%y="<<x%y<<endl;
system("pause");
return 0;
}
複製代碼
作者:
呂得銓
時間:
2022-11-25 19:47
本帖最後由 鄭繼威 於 2022-11-25 19:55 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=10, y=3;
cout<<"當x等於"<<x<<", y等於"<<y<<"時..."<<endl;
cout<<"x+y="<<x+y<<endl;
cout<<"x-y="<<x-y<<endl;
cout<<"x*y="<<x*y<<endl;
cout<<"x/y="<<x/y<<endl;
cout<<"x%y="<<x%y<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張桔熙
時間:
2022-11-25 19:53
#include<iostream> //引入 <標準函示庫> 標頭檔 c standard library
#include<cstdlib> //引入 <基本輸入輸出> 標頭檔 input & output stream
using namespace std; //指定命名空間為 std
int main() //主函式
{
int x=10,y=3;
cout<<"當x等於"<<x<<", y等於"<<y<<"時..."<<endl;
cout<<"x+y="<<x+y<<endl;
cout<<"x-y="<<x-y<<endl;
cout<<"x*y="<<x*y<<endl;
cout<<"x/y="<<x/y<<endl;
cout<<"x%y="<<x%y<<endl;
system("pause"); // 讓畫面暫停
return 0; //回傳到主控台,告知該程式已成功執行
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2