標題:
五則運算
[打印本頁]
作者:
tonyh
時間:
2017-1-24 09:05
標題:
五則運算
本帖最後由 tonyh 於 2017-1-24 10:07 編輯
+ 加
- 減
* 乘
/ 除
% 取餘數
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=12,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;
}
複製代碼
作者:
莊旻叡
時間:
2017-1-24 09:36
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=95,y=19;
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;
}
複製代碼
作者:
王子丹
時間:
2017-1-24 09:40
#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;
}
複製代碼
作者:
黃子晏
時間:
2017-1-24 09:42
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=91011,y=5678;
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;
}
複製代碼
作者:
呂承霖
時間:
2017-1-24 09:42
#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;
}
複製代碼
作者:
黃珖瑋
時間:
2017-1-24 09:44
[code#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int w=8,s=9;
cout<<"w的質為"<<w<<",s的質為" <<s<<"時..."<<endl;
cout<<"w+s="<<w+s<<endl;
cout<<"w-s="<<w-s<<endl;
cout<<"w*s="<<w*s<<endl;
cout<<"w/s="<<w/s<<endl;
cout<<"w%s="<<w%s<<endl;
system("pause");
return 0;
}][/code]
作者:
黃珖瑋
時間:
2017-1-24 09:45
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int w=8,s=9;
cout<<"w的質為"<<w<<",s的質為" <<s<<"時..."<<endl;
cout<<"w+s="<<w+s<<endl;
cout<<"w-s="<<w-s<<endl;
cout<<"w*s="<<w*s<<endl;
cout<<"w/s="<<w/s<<endl;
cout<<"w%s="<<w%s<<endl;
system("pause");
return 0;
}
複製代碼
作者:
宋禹禛
時間:
2017-1-24 09:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=987,y=654;
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;
}
複製代碼
作者:
黃楷哲
時間:
2017-1-24 09:49
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int X=515664,Y=645;
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;
}
複製代碼
作者:
吳翊愷
時間:
2017-1-24 09:50
#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;
}
複製代碼
作者:
余孟儒
時間:
2017-1-24 09:51
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int x=26,y=11;
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;
}
複製代碼
作者:
楊修禹
時間:
2017-1-24 09:53
#include<iostream> //
#include<cstdlib> //
using namespace std; //
int main()//
{
int x=1414,y=214;
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;
}
複製代碼
作者:
文柏涵
時間:
2017-1-24 09:57
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=1, y=1;
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;
}
複製代碼
作者:
沈竑希
時間:
2017-1-24 09:57
#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;
}
複製代碼
作者:
黃鼎家
時間:
2017-1-24 09:59
#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;
}
複製代碼
作者:
王子丹
時間:
2017-1-24 10:16
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數:";
cin>>a;
cout<<"你輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃楷哲
時間:
2017-1-24 10:17
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"請輸入一整數:";
int a;
cin>>a;
cout<<"你輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃珖瑋
時間:
2017-1-24 10:18
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一個整數:";
cin>>a;
cout<<"您輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2