標題:
五則運算(一)
[打印本頁]
作者:
陳品肇
時間:
2019-3-16 09:13
標題:
五則運算(一)
#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-3-16 11:22
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=3,y=4;
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-3-16 11:22
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=6,y=3;
cout<<"x=6,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-3-16 11:26
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
int b;
cout<<"請輸入一個數並按enter:";
cin>>a;
cout<<"請在輸入一個數並按enter:";
cin>>b;
cout<<a<<"加"<<b<<"等於"<<a+b<<endl;
cout<<a<<"減"<<b<<"等於"<<a-b<<endl;
cout<<a<<"乘"<<b<<"等於"<<a*b<<endl;
cout<<a<<"除"<<b<<"等於"<<a/b<<"..."<<a%b<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王建葦
時間:
2019-3-16 11:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y;
cout<<"請輸入x=";
cin>>x;
cout<<"請輸入y=";
cin>>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-3-16 11:30
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=9,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-3-16 11:33
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b;
cout<<"請輸入一個整數";
cin>>a;
cout<<"請輸入另一個整數";
cin>>b;
cout<<"a是"<<a<<",b是"<<b<<endl;
cout<<"a+b="<<a+b<<endl;
cout<<"a-b="<<a-b<<endl;
cout<<"a*b="<<a*b<<endl;
cout<<"a/b="<<a/b<<endl;
cout<<"a%b="<<a%b<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李易展
時間:
2019-3-16 11:35
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int apple=7,b=6;
cout<<"a=7,b=6"<<endl;
cout<<"結果如下:"<<endl;
cout<<"a+b="<<apple+b<<endl;
cout<<"a-b="<<apple-b<<endl;
cout<<"a*b="<<apple*b<<endl;
cout<<"a/b="<<apple/b<<"餘數"<<apple%b<<endl;
cout<<""<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳宇柏
時間:
2019-5-14 18:17
#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