標題:
五則運算
[打印本頁]
作者:
t2364705
時間:
2011-9-10 16:42
標題:
五則運算
#include<iostream>
using namespace std;
int main()
{
int x;
int y;
cout<<"請輸入x值:";
cin>>x;
cout<<endl;
cout<<"請輸入y值:";
cin>>y;
cout<<"您剛輸入的x是:"<<x<<endl;
cout<<"您剛輸入的y為:"<<y<<endl;
cout<<"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;
cout<<"x%y="<<x%y<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2