返回列表 發帖

五則運算(一)

#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;   
}
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

返回列表