標題:
五則運算 (一)
[打印本頁]
作者:
tonyh
時間:
2019-4-20 11:31
標題:
五則運算 (一)
+ 加
- 減
* 乘
/ 除
% 取餘數
#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;
}
複製代碼
作者:
曾宥程
時間:
2019-4-20 12:02
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=100,y=2;
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;
}
複製代碼
作者:
郭哲維
時間:
2019-4-21 11:23
本帖最後由 郭哲維 於 2019-4-21 11:30 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main( )
{
int x=100,y=2;
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;
}
複製代碼
作者:
黃晟瑋
時間:
2019-4-24 20:32
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=88,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-4-27 10:26
#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;
}
複製代碼
作者:
鄭羽捷
時間:
2019-4-27 10:52
#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;
}
複製代碼
作者:
蔡承伭
時間:
2019-4-27 10:56
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=50, y=40;
cout<<"當x等於"<<x<<",y等於"<<y<<"時..."<<endl;
cout<<"3x+y="<<3*x+y<<endl;
cout<<"3x-y="<<3*x-y<<endl;
cout<<"3x*y="<<3*x*y<<endl;
cout<<"3x/y="<<3*x/y<<endl;
cout<<"3x%y="<<3*x%y<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林孟蓁
時間:
2019-4-27 10:58
#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;
}
複製代碼
作者:
鄭羽捷
時間:
2019-4-27 10:58
#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;
}
複製代碼
作者:
王翎璇
時間:
2019-4-27 10:59
#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;
}
複製代碼
作者:
駱顗安
時間:
2020-4-16 16:03
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=26,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