標題:
五則運算
[打印本頁]
作者:
陳品肇
時間:
2019-1-28 12:44
標題:
五則運算
+ 加
- 減
* 乘
/ 除
% 取餘數
#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;
}
複製代碼
作者:
謝仲恩
時間:
2019-1-28 15:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a=23,b=7;
cout<<"a+b="<<a+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;
system("pause");
return 0;
複製代碼
作者:
謝蓮金
時間:
2019-1-28 15:14
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a=4,b=3;
cout<<"a+b="<<a+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;
system("pause");
return 0;
}
複製代碼
作者:
洪藝瑄
時間:
2019-1-28 15:15
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a =23,b=7;
cout<<"a+b="<<a+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;
system("pause");
return 0;
}
複製代碼
作者:
李易展
時間:
2019-1-28 15:15
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
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;
}
複製代碼
作者:
龔家誼
時間:
2019-1-28 15:20
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
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;
}
複製代碼
作者:
傅永賢
時間:
2019-1-28 15:20
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=23,y=7;
cout<<"x+y=";
cout<<"x-y=";
cout<<"x*y=";
cout<<"x/y=";
cout<<"x%y=";
system("pause");
return 0;
}
複製代碼
作者:
廖思傑
時間:
2019-1-28 15:22
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
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;
}
複製代碼
作者:
孔令安
時間:
2019-1-28 15:22
#include<iostream> //
#include<cstdlib>
using namespace std;
int main()
{
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");
return0;
}
複製代碼
作者:
張正宜
時間:
2019-1-28 15:24
#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;
}
複製代碼
作者:
廖御晴
時間:
2019-1-28 15:24
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2