標題:
五則運算
[打印本頁]
作者:
tonyh
時間:
2015-7-24 14:14
標題:
五則運算
本帖最後由 tonyh 於 2015-7-24 14:57 編輯
+ 加
- 減
* 乘
/ 除
% 取餘數
#include<iostream>
#include<cstdlib>
#include<cmath>
using namespace std;
int main()
{
int x=7,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<<sqrt(4)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳泓睿
時間:
2015-7-24 14:44
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=3,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;
}
複製代碼
作者:
陳泓宇
時間:
2015-7-24 14:45
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=7,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;
}
複製代碼
作者:
陳長庚
時間:
2015-7-24 14:58
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=123456789;
int y=987654321;
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;
}
複製代碼
作者:
劉愷恩
時間:
2015-7-24 14:58
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=123456789,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;
}
複製代碼
作者:
劉愷威
時間:
2015-7-24 14:58
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=7,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;
}
複製代碼
作者:
王駿愷
時間:
2015-7-24 14:58
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=7,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