標題:
五則運算 (一)
[打印本頁]
作者:
tonyh
時間:
2014-8-23 10:52
標題:
五則運算 (一)
本帖最後由 tonyh 於 2014-8-23 10:54 編輯
[attach]950[/attach]
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=10,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;
}
複製代碼
作者:
梁和雋
時間:
2014-8-23 10:53
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int x;
int y;
int z;
x=2;
y=1;
z=12;
cout<<"x=2,y=1,z=12"<<endl;
cout<<" x / y + x * y - ( z + x - y) - x / y + x * y - ( z + x - y) "<<endl;cout<< x / y + x * y - ( z + x - y) - x / y + x * y - ( z + x - y) <<endl;
cout<<" x / y - x * y - ( z + x - y) - x / y - x * y - ( z + x - y) "<<endl;cout<< x / y - x * y - ( z + x - y) - x / y - x * y - ( z + x - y) <<endl;
cout<<" x / y * x * y - ( z + x - y) - x / y * x * y - ( z + x - y) "<<endl;cout<< x / y * x * y - ( z + x - y) - x / y * x * y - ( z + x - y) <<endl;
cout<<" x / y / x * y - ( z + x - y) - x / y / x * y - ( z + x - y) "<<endl;cout<< x / y / x * y - ( z + x - y) - x / y / x * y - ( z + x - y) <<endl;
cout<<" x / y % x * y - ( z + x - y) - x / y % x * y - ( z + x - y) "<<endl;cout<< x / y % x * y - ( z + x - y) - x / y%x * y - ( z + x - y) <<endl;
system("pause");
return 0;
}
複製代碼
作者:
李大全
時間:
2014-8-23 10:56
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=12,y=9;
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;
}
複製代碼
作者:
李知易
時間:
2014-8-23 10:56
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=10,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;
}
複製代碼
作者:
洪振庭
時間:
2014-8-23 11:09
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=26,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;
}
複製代碼
作者:
謝瀞儀
時間:
2014-8-23 11:11
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=10,y=10;
cout<<"x="<<x<<"y="<<y<<endl;
cout<<"x+y="<<x+y<<"\a"
<<"\nx-y="<<x-y<<"\a"
<<"\nx*y="<<x*y<<"\a"
<<"\nx/y="<<x/y<<"\a"
<<"\nx%y="<<x%y<<"\a"<<"\n";
system("pause");
system("pause");
system("pause");
system("pause");
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2