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-7-3 10:18
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
int y;
x=4;
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;
}
複製代碼
作者: 呂嘉勳 時間: 2014-7-3 10:19
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
//+-*/%
int x;
int y;
x=2;
y=4;
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-7-3 10:19
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
int y;
x=6;
y=24;
cout << "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;
}
複製代碼
作者: 尤柏豫 時間: 2014-7-3 10:19
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
// + - * / %
int x;
int y;
x = 100;
y = 1;
cout <<" x現在是 "<<" y現在是 "<< x <<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-7-3 10:21
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int x;
int y;
int z;
x=198;
y=4;
z=56;
cout<< "x現在是198"<<endl;
cout<< "y現在是4"<<endl;
cout<< "z現在是56"<<endl;
cout<< "x / y % z = "<< x / y % z<<endl;
cout<< "x * y - z = "<< x * y - z<<endl;
cout<< "x - y * z = "<< x - y * z<<endl;
cout<< "x + y / z = "<< x + y / z<<endl;
cout<< "x % y + z = "<< x % y + z<<endl;
system("pause");
return 0;
}
複製代碼
作者: 李知易 時間: 2014-7-3 10:21
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int x;
int y;
x = 2;
y = 4;
cout <<"x+y="<<x + y << endl;
cout <<" 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-7-3 10:21
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int x;
int y;
x=5;
y=26;
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-7-3 10:31
[code#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int x;
int y;
x=5;
y=10;
cout<<"x 現在是"<< x << endl;
cout<<"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]作者: 張宸碩 時間: 2014-7-3 10:34