標題:
五則運算
[打印本頁]
作者:
王瑞喻
時間:
2020-7-16 15:10
標題:
五則運算
本帖最後由 王瑞喻 於 2020-7-16 15:36 編輯
+ 加
- 減
* 乘
/ 除
% 取餘數
#include<iostream>
#include<cstdlib>
using namespace std;
int main() //int ---> integer 整數
{
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;
}
複製代碼
作者:
林威彤
時間:
2020-7-16 15:40
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=50,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;
}
複製代碼
作者:
張琍晴
時間:
2020-7-16 15:43
#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;
}
複製代碼
作者:
林秉叡
時間:
2020-7-16 15:45
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
//五則運算
int x=10,y=7;
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;
}
複製代碼
作者:
蔡懷樂
時間:
2020-7-16 15:48
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
//五則運算
//int x;
//int y;
int x=50,y=63;
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;
}
作者:
鄭鈞澤
時間:
2020-7-16 15:48
#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;
}
複製代碼
作者:
蔡懷樂
時間:
2020-7-16 15:49
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
//五則運算
//int x;
//int y;
int x=50,y=63;
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;
}
複製代碼
作者:
陳昱宏
時間:
2020-7-16 15:49
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=26,y=6;
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 ;
}
複製代碼
作者:
王若安
時間:
2020-7-16 15:53
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=77,y=23;
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;
}
複製代碼
作者:
王若安
時間:
2020-7-16 16:02
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y;
cout<<"輸入x的值:";
cin>>x;
cout<<"輸入y的值:";
cin>>y;
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;
}
複製代碼
作者:
楊名嘉
時間:
2020-7-17 09:09
#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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2