標題:
五則運算
[打印本頁]
作者:
tonyh
時間:
2012-8-7 09:38
標題:
五則運算
#include<iostream>
using namespace std;
int main()
{
int x=10, 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;
}
複製代碼
作者:
t2364705
時間:
2012-8-7 09:41
#include<iostream>
using namespace std;
int main()
{
int x=10, 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;
}
複製代碼
作者:
劉嘉琳
時間:
2012-8-7 09:43
#include<iostream>
using namespace std;
int main()
{
int x=10;
int 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;
}
複製代碼
作者:
周煒翔
時間:
2012-8-7 09:50
#include<iostream>
using namespace std;
int main()
{
int x=10, 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;
}
複製代碼
作者:
周旻賢
時間:
2012-8-7 09:50
#include<iostream>
using namespace std;
int main()
{
int x=10,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;
}
複製代碼
作者:
許睿森
時間:
2012-8-7 09:50
#include<iostream>
using namespace std;
int main()
{
int x=15, 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;
cout<<"x%y="<<x%y<<endl;
cout<<"x*x*y="<<x*x*y<<endl;
system("pause");
return 0;
}
複製代碼
作者:
劉泳鱔
時間:
2012-8-7 09:53
#include<iostream>
using namespace std;
int main()
{
int x=10, 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;
}
複製代碼
作者:
蔡昀佑
時間:
2012-8-7 09:53
#include<iostream>
using namespace std;
int main()
{
int x=10, 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;
}
複製代碼
[code][/code]
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2