標題:
五則運算(二)
[打印本頁]
作者:
陳品肇
時間:
2018-10-11 21:11
標題:
五則運算(二)
使用 cin 讓使用者能自行指定 x 與 y 的值.
[attach]5000[/attach]
作者:
趙一鳴
時間:
2018-10-13 13:52
本帖最後由 趙一鳴 於 2018-10-13 14:30 編輯
#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;
}
複製代碼
作者:
洪寬瀧
時間:
2018-10-13 13:57
#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;
}
複製代碼
作者:
曲書辰
時間:
2018-10-13 14:00
本帖最後由 曲書辰 於 2018-10-13 14:01 編輯
#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;
}
複製代碼
作者:
章幼莛
時間:
2018-10-13 14:02
本帖最後由 章幼莛 於 2018-10-13 14:29 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x,y;
cout<<"請輸入整數x:";
cin>>x;
cout<<"請輸入整數y:";
cin>>y;
cout<<"當x為:"<<x<<endl;
cout<<"當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;
}
複製代碼
作者:
吳孟修
時間:
2018-10-13 14:08
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y;
cout<<"請輸入一個整數:";
cin>>x;
cout<<"請再輸入一個整數:";
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;
}
複製代碼
作者:
葉映琁
時間:
2018-10-13 14:08
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int X=10,Y=3;
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;
}
複製代碼
作者:
周孫印
時間:
2018-10-13 14:09
#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;
}
複製代碼
作者:
吳孟書
時間:
2018-10-13 14:09
#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;
}
複製代碼
作者:
葉千郁
時間:
2018-10-13 14:11
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=10,y=3;
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;
}
複製代碼
作者:
王瑞喻
時間:
2018-10-13 14:11
#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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2