標題:
五則運算
[打印本頁]
作者:
tonyh
時間:
2015-7-2 14:52
標題:
五則運算
+ 加
- 減
* 乘
/ 除
% 取餘數
作者:
張凱翔
時間:
2015-7-2 15:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=50, 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;
}
複製代碼
作者:
tonyh
時間:
2015-7-3 11:21
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=456, y=123;
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-7-3 11:25
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=999, y=999;
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;
}
複製代碼
回復
1#
tonyh
作者:
徐煒博
時間:
2015-7-3 11:26
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=50, 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;
}
複製代碼
作者:
洪煒庭
時間:
2015-7-3 11:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=456, y=123;
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-7-3 11:28
本帖最後由 蔡季樺 於 2015-7-3 11:35 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=44444444444444444444, y=2222222222222222222222;
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-7-3 11:29
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=9, y=6;
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-7-3 11:31
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=50, 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;
}
複製代碼
作者:
張健勳
時間:
2015-7-3 11:31
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=544,y=5324;
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-7-3 11:33
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=456, y=123;
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-7-3 11:39
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int x=25,y=91;
cout<<"When X is"<<x<<",y is"<<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-7-3 11:42
#include<iostream> //引入標頭檔 <iostream> in & out stream
#include<cstdlib> //引入標頭檔 <cstdlib> c standard library
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-7-3 11:44
#include<iostream> //引入標頭檔<iostream in& out stream>
#include<cstdlib> //引入標頭檔<cstdlib> c standard library
using namespace std; //指定命名空間 std
int main() //主函式
{ //大括號內為主函式所要執行的程式碼
//int x
//int x
//int y
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; //回傳0給主控台告知程式已經成功執行
複製代碼
作者:
吳承志
時間:
2015-7-3 11:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=23, y=7;
cout<<"When x is"<<x<<",y is"<<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-7-3 11:54
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=9, y=6;
cout<<"請輸入X喔";
cin>>x;
cout<<"請輸入y喔";
cin>>y;
system("pause");
return 0;
}
複製代碼
作者:
王奕勛
時間:
2015-7-3 11:55
#include<iostream> //引入標頭檔 <iostream> in & out stream
#include<cstdlib> //引入標頭檔 <cstdlib> c standard library
using namespace std;
int main()
{
int x;
cin>> x;
cout<<"您輸入的數字是"<<x<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2