標題:
五則運算
[打印本頁]
作者:
tonyh
時間:
2016-2-2 13:38
標題:
五則運算
本帖最後由 tonyh 於 2016-2-2 14:34 編輯
+ 加
- 減
* 乘
/ 除
% 取餘數
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
//int x=23;
//int y=7;
int x=23, 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;
}
複製代碼
作者:
方宥鈞
時間:
2016-2-2 14:10
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=44444,y=33333;
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;
}
複製代碼
作者:
陳泓瑜
時間:
2016-2-2 14:16
#include<iostream>
#include<cstdlib>
using namespace std;
int main ()
{
int x=464657814,y=65464644;
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;
複製代碼
作者:
林昱岑
時間:
2016-2-2 14:19
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=548,y=276;
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;
}
複製代碼
作者:
謝以愛
時間:
2016-2-2 14:20
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=23,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;
}
複製代碼
作者:
吳建錡
時間:
2016-2-2 14:32
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int h=9 ,f=5;
cout<<"當h的職位"<<h<<",f的職位"<<f<<"時..."<<endl;
cout<<"h+f="<<h+f<<endl;
cout<<"h-f="<<h-f<<endl;
cout<<"h*f="<<h*f<<endl;
cout<<"h/f="<<h/f<<endl;
cout<<"h%f="<<h%f<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳泓廷
時間:
2016-2-2 14:33
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=78,y=98;
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;
}
複製代碼
作者:
陳泓瑜
時間:
2016-2-2 15:01
#include<iostream>
#include<cstdlib>
using namespace std;
int main ()
{
int x;
cout<<"PLEASE SET A NUMBER:";
cin>>x;
cout<<"THE NUMBER IS:"<<x<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2