標題:
[隨堂測驗] 五則運算 (二)
[打印本頁]
作者:
許婷芳
時間:
2019-7-26 16:09
標題:
[隨堂測驗] 五則運算 (二)
如果我們要使用 cin 讓使用者能自行指定 x 與 y 的值要怎麼打呢?
[attach]6894[/attach]
作者:
謝以愛
時間:
2019-7-26 20:35
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y;
cout<<"請輸入x:"<<endl;
cin>>x;
cout<<"請輸入y:"<<endl;
cin>>y;
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-7-26 20:41
#include<iostream>
#include<cstdlib>
using namespace std;
int main ()
{
int x,y;
cout<<"請輸入x"<<endl;
cin>>x;
cout<<"請輸入y"<<endl;
cin>>y;
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-7-26 20:44
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y;
cout<<"請輸入x:"<<endl;
cin>>x>>endl;
cout<<"請輸入y:"<<endl;
cin>>y>>endl;
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-7-26 20:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y;
cout<<"請輸入X的值:"<<endl;
cin>>x;
cout<<"請輸入Y的值:"<<endl;
cin>>y;
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-7-26 20:48
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,j;
cout<<"請輸入a"<<endl;
cin>>a;
cout<<"請輸入j"<<endl;
cin>>j;
cout<<"當a等於"<<a<<",當j等於七時..."<<j<<endl;
cout<<"a+j="<<a+j<<endl;
cout<<"a-j="<<a-j<<endl;
cout<<"a*j="<<a*j<<endl;
cout<<"a/j="<<a/j<<endl;
cout<<"a%j="<<a%j<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蘇韋誠
時間:
2019-7-26 20:49
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y;
cout<<"請輸入 X:"<<endl;
cin>>x;
cout<<"請輸入 y:"<<endl;
cin>>y;
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-7-26 20:59
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y;
cout<<"請輸入x:"<<endl;
cin>>x;
cout<<"請輸入y:"<<endl;
cin>>y;
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-7-26 20:59
[code] #include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y;
cout<<"請輸入x;"<<endl;
cin>>x;
cout<<"請輸入y;"<<endl;
cin>>y;
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;
}
複製代碼
[/code]
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2