標題:
五則運算(1)
[打印本頁]
作者:
張翼安
時間:
2015-9-12 01:03
標題:
五則運算(1)
#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;
}
複製代碼
作者:
吳承勳
時間:
2015-9-12 12:02
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x = 10;
int 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;
}
複製代碼
作者:
張文擇
時間:
2015-9-12 12:03
#include<iostream>
#include<cstdlib>
int main()
{
int x=10,y=3;
cout<<"當x等於"<<x<<", y等於"<<y<<"時..."<<endl;
cout<<"x+y="<<x+y<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張健勳
時間:
2015-9-13 12:33
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=36,y=22;
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;
}
複製代碼
在家裡就能用
作者:
張健勳
時間:
2015-9-19 11:33
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=2;
int y=10;
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;
}
複製代碼
作者:
吳承勳
時間:
2015-9-19 11:33
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x = 1;
int y = 10;
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;
}
複製代碼
作者:
張文擇
時間:
2015-9-19 11:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{ int x,y;
x=3,y=10;
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;
}
複製代碼
作者:
蔡季樺
時間:
2015-9-19 11:34
本帖最後由 蔡季樺 於 2015-9-22 19:45 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=9,y=34;
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;
}
複製代碼
作者:
任立宇
時間:
2015-9-19 11:36
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
int x,y;
x=4;
y=10;
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;
}
複製代碼
作者:
蔡庭豪
時間:
2015-9-29 17:27
本帖最後由 蔡庭豪 於 2015-9-29 17:30 編輯
#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