標題:
五則運算
[打印本頁]
作者:
tonyh
時間:
2018-7-11 10:17
標題:
五則運算
+ 加
- 減
* 乘
/ 除
% 取餘數
#include<iostream>
#include<cstdlib>
using namespace std;
int main() //int ---> integer 整數
{
int x=12,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;
}
複製代碼
作者:
陳苡睿
時間:
2018-7-11 10:40
#include<iostream>
#include<cstdlib>
using namespace std;
int main() //int ---> integer 整數
{
int x=12,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;
}
複製代碼
作者:
王秉淳
時間:
2018-7-11 10:40
#include<iostream>
#include<cstdlib>
using namespace std;
int main() //int ---> integer 整數
{
int x=12,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;
}
複製代碼
作者:
楊道軒
時間:
2018-7-11 10:40
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a=123,b=45;
cout<<"當a為"<<a<<",b為"<<b<<"時..."<<endl;
cout<<"a+b="<<a+b<<endl;
cout<<"a-b="<<a-b<<endl;
cout<<"a*b="<<a*b<<endl;
cout<<"a/b="<<a/b<<endl; //商 5/2=2..1
cout<<"a%b="<<a%b<<endl; //餘數
system("pause");
return 0;
}
複製代碼
複製代碼
作者:
李祺閎
時間:
2018-7-11 10:43
本帖最後由 tonyh 於 2018-7-11 10:52 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main() //int ---> integer 整數
{
int x=12,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;
}
複製代碼
作者:
梁朝凱
時間:
2018-7-11 10:43
#include<iostream>
#include<cstdlib>
using namespace std;
int main() //int ---> integer 整數
{
int x=12,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;
}
複製代碼
作者:
蔡昀蓁
時間:
2018-7-11 10:44
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a=117,b=98;
cout<<"當a的值為"<<a<<",b的值為"<<b<<"時..."<<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;
}
複製代碼
作者:
鄭宇辰
時間:
2018-7-11 10:44
#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;
}
複製代碼
作者:
蔡承育
時間:
2018-7-11 10:45
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int x=12,y=5;
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;
}
複製代碼
作者:
郭丞馨
時間:
2018-7-11 10:45
本帖最後由 tonyh 於 2018-7-11 10:53 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main() //int ---> integer 整數
{
int x=12,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;
}
複製代碼
作者:
楊侍穎
時間:
2018-7-11 10:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=12,y=5;
cout<<"if x value was"<<x<<",y value was"<<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;
}
複製代碼
作者:
凃閔捷
時間:
2018-7-11 10:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=12,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;
}
複製代碼
作者:
劉冠伶
時間:
2018-7-11 10:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=94;
int y=46;
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;
}
複製代碼
作者:
王箴宓
時間:
2018-7-11 10:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=12,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");
system("pause");
return 0;
}
複製代碼
作者:
葉辰卉
時間:
2018-7-11 10:50
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=23
int 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;
}
複製代碼
作者:
陳子睿
時間:
2018-7-11 10:57
[code]#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=12,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]
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2