標題:
五則運算
[打印本頁]
作者:
蔡昀儒
時間:
2019-8-22 14:39
標題:
五則運算
本帖最後由 蔡昀儒 於 2019-8-23 16:01 編輯
+ 加
- 減
* 乘
/ 除
% 取餘數
[attach]6986[/attach]
#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-8-22 15:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=5;
int 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 ;
}
複製代碼
作者:
邱琦富
時間:
2019-8-22 15:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=5
int 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 ;
}
複製代碼
作者:
周孫印
時間:
2019-8-22 15:16
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=5;
int 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 ;
}
複製代碼
作者:
李穎俊
時間:
2019-8-22 15:19
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int x=12, 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;
system("pause");
return 0;
}
複製代碼
作者:
高湘庭
時間:
2019-8-22 15:19
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=5;
int 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;
}
複製代碼
作者:
李泓寬
時間:
2019-8-22 15:21
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=23;
int y=7;
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-8-22 15:21
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
//int x=5;
//int y=10;
int x=5,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;
}
複製代碼
作者:
古紹辰
時間:
2019-8-22 15:21
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=5;
int 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;
}
複製代碼
作者:
黃祈瑋
時間:
2019-8-22 15:23
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=5
int y=10
cout<<"當x的值數 "<<y<<"當y的值數
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-8-22 15:26
#include<iostream>
#include<cstdlib>
using namespace std;
int main ()
{
int x=23,y=7;
cout<<"當x的值為"<<x<<",y的值為"<<y<<endl;
cout<<"x+y="<<x+y<<endl;
cout<<"x-y="<<x-y<<endla;
cout<<"x*y="<<x*y<<endl;
cout<<"x/y="<<x/y<<endl;
cout<<"x%y="<<x%y<<endl;
system ("pause");
return 0;
}
複製代碼
作者:
周瑋杰
時間:
2019-8-22 15:27
#include <iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=5;
int 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;
}
複製代碼
作者:
高興
時間:
2019-8-22 15:37
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=5;
int 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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2