返回列表 發帖
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    int x=23,y=7;
    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;
}

TOP

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    int x,y;
    cout<<"輸入x的值為";
    cin>>x;
    cout<<"輸入y的值為";
    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;
}

TOP

返回列表