標題:
五則運算(ㄧ)
[打印本頁]
作者:
周政輝
時間:
2017-3-14 17:32
標題:
五則運算(ㄧ)
#include<iostream> // <-基本輸出輸入的函式庫 Input Output cin 輸入 cout 輸出
#include<cstdlib> //主要的函式庫 Library
using namespace std;
int main()
{
int x =10; int y = 20;
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;
}
複製代碼
作者:
林峻安
時間:
2017-3-14 17:43
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=1000000; int y=2967345;
cout<<"x+y="<<x+y;
cout<<"x-y="<<x-y;
cout<<"x*y="<<x*y;
cout<<"x/y="<<x/y;
cout<<"x%y="<<x%y;
system("pause");
return 0;
}
複製代碼
作者:
顏羽彤
時間:
2017-3-14 17:45
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=566565;
int y=616524;
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;
}
複製代碼
作者:
張凱婷
時間:
2017-3-14 17:45
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x =10; int y =20;
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;
}
複製代碼
作者:
巫沛庭
時間:
2017-3-14 17:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=18;int y=4;
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;
}
作者:
巫晉宇
時間:
2017-3-14 17:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=18;int y=4;
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;
}
作者:
張閎鈞
時間:
2017-3-14 17:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int m=1;int n=2;
cout<<"m+n="<<m+n<<endl;
cout<<"m-n="<<m-n<<endl;
cout<<"m*n="<<m*n<<endl;
cout<<"m/n="<<m/n<<endl;
cout<<"m%n="<<m%n<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2