標題:
五則運算 (一)
[打印本頁]
作者:
許婷芳
時間:
2019-9-27 16:42
標題:
五則運算 (一)
+ 加
- 減
* 乘
/ 除
% 取餘數
#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-9-28 10:21
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int X=10,Y=3;
cout<<"當x等於"<<10<<", y等於"<<3<<"時..."<<endl;
float h=152.6f, w=60.5f;
cout<<"10+3="<<X+Y<<endl;
cout<<"10-3="<<X-Y<<endl;
cout<<"10*3="<<X*Y<<endl;
cout<<"10/3="<<X/Y<<endl;
cout<<"10%3="<<X%Y<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李穎俊
時間:
2019-9-28 10:21
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=10,y=3;
cout<<"當X=10,Y=3時"<<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-9-28 10:26
本帖最後由 許婷芳 於 2019-9-28 10:43 編輯
#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-9-28 10:35
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int X=10,Y=3;
cout<<"當x等於"<<10<<", y等於"<<3<<"時..."<<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-9-28 10: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;
}
複製代碼
作者:
王銘鴻
時間:
2019-9-28 10: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;
}
複製代碼
作者:
劉愷鈞
時間:
2019-9-28 10:44
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=10,y=3;
cout<<"當x=10,y=3時..."<<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://istak.org.tw/seed/)
Powered by Discuz! 7.2