標題:
五則運算
[打印本頁]
作者:
蔡昀儒
時間:
2019-7-29 13:26
標題:
五則運算
本帖最後由 蔡昀儒 於 2019-7-29 13:27 編輯
+ 加
- 減
* 乘
/ 除
% 取餘數
[attach]6896[/attach]
#include<iostream>
#include<cstdlib>
using namespace std;
int main() //int ---> integer 整數
{
int x=12,y=5; //宣告變數
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;
}
複製代碼
作者:
龔品誠
時間:
2019-7-29 14:10
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=10;
int 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;
}
複製代碼
作者:
薛博仁
時間:
2019-7-29 14:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=10;
int 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;
}
複製代碼
作者:
黃鋐粟
時間:
2019-7-29 14:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=12,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;
}
複製代碼
作者:
陳柏臻
時間:
2019-7-29 14:31
[code]#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=30;
int y=50;
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;
}
複製代碼
[/code]
作者:
立晟
時間:
2019-7-29 15:02
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=10;
int 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;
cout<<"10*(x+y)="<<10*(x+y)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張博評
時間:
2019-7-30 09:49
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=10;
int 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