標題:
五則運算
[打印本頁]
作者:
tonyh
時間:
2015-8-11 13:42
標題:
五則運算
+ 加
- 減
* 乘
/ 除
% 取餘數
作者:
tonyh
時間:
2015-8-11 14:05
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
//int x=23; //宣告一個整數變數,變數的名稱是x,變數的值是23
//int y=7;
int x=23,y=7;
cout<<"當x的值為"<<x<<", y的值為"<<y<<"時..."<<endl;
cout<<"x+y="<<x+y<<endl; //30
cout<<"x-y="<<x-y<<endl; //16
cout<<"x*y="<<x*y<<endl; //161
cout<<"x/y="<<x/y<<endl; //3
cout<<"x%y="<<x%y<<endl; //2
system("pause");
return 0;
}
複製代碼
作者:
林禹彤
時間:
2015-8-11 14:17
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int x=23,y=7;
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-8-11 14:20
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=20,y=2;
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;
system("pause");
return 0;
}
複製代碼
作者:
張文擇
時間:
2015-8-11 14:25
#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;
cout<<"x%y="<<x%y<<endl;
system("pause");
return 0;
}
複製代碼
作者:
顏宇呈
時間:
2015-8-11 14:26
#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;
}
複製代碼
作者:
柳晟緯
時間:
2015-8-11 14:28
#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;
}
複製代碼
作者:
鍾帛融
時間:
2015-8-11 14:30
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
//int x;
//int y;
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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2