標題:
五則運算(一)
[打印本頁]
作者:
陳品肇
時間:
2018-10-3 18:14
標題:
五則運算(一)
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=10, 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;
}
複製代碼
作者:
曲書辰
時間:
2018-10-6 14:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int X=10,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;
}
複製代碼
作者:
吳孟修
時間:
2018-10-6 14:31
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=500,y=10;
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-10-6 14:32
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=10,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;
}
複製代碼
回復
1#
陳品肇
作者:
趙一鳴
時間:
2018-10-6 14:33
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a=23,b=15;
cout<<"a+b="<<a+b<<"\n";
cout<<"a-b="<<a-b<<"\n";
cout<<"a*b="<<a*b<<"\n";
cout<<"a/b="<<a/b<<"\n";
cout<<"a%b="<<a%b<<"\n";
system("pause");
return 0;
}
複製代碼
作者:
王瑞喻
時間:
2018-10-6 14:36
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=10,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;
}
複製代碼
作者:
周孫印
時間:
2018-10-6 14:37
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=10, 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;
}
複製代碼
作者:
葉映琁
時間:
2018-10-6 14:38
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a=10,b=4;
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;
cout<<"a%b="<<a%b<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳孟書
時間:
2018-10-6 14:39
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=10,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;
}
複製代碼
作者:
葉千郁
時間:
2018-10-6 14:43
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=11,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;
}
複製代碼
作者:
洪寬瀧
時間:
2018-10-13 13:11
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=10,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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2