標題:
五則運算 (一)
[打印本頁]
作者:
許婷芳
時間:
2019-7-26 16:07
標題:
五則運算 (一)
+ 加 (5+3=8)
- 減 (5-3=2)
* 乘 (5*3=15)
/ 除 (5/3=1)
% 取餘數 (5%3=2)
[attach]6893[/attach]
作者:
林祐霆
時間:
2019-7-26 19:54
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=9487,y=8787;
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-7-26 20:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main ()
{
int x=20`y=1
x+y=21
x-y=19
x*y=20
x/y=20
x%y=0
system("pause");
return 0;
}
作者:
蘇韋誠
時間:
2019-7-26 20:01
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=61610487,y=4113487;
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-7-26 20:02
#include<iostream>
#include<cstdlib>
using namespace std;
{
int x=5,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;
system("pause")
return 0;
}
作者:
洪承廷
時間:
2019-7-26 20:23
#include<iostream>
#include<cstdlib>
using namespace std;
int main ()
{
int x=20,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;
}
作者:
謝以恩
時間:
2019-7-26 20:26
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a=8,j=7;
cout<<"當a等於八,當j等於七時..."<<endl;
cout<<"a+j="<<a+j<<endl;
cout<<"a-j="<<a-j<<endl;
cout<<"a*j="<<a*j<<endl;
cout<<"a/j="<<a/j<<endl;
cout<<"a%j="<<a%j<<endl;
system("pause");
return 0;
}
複製代碼
作者:
廖文綺
時間:
2019-7-26 20:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=9,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;
}
複製代碼
作者:
謝以愛
時間:
2019-7-26 20:32
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=9,y=8;
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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2