返回列表 發帖
>
#inciude<cstdlib>
using  namespace std;
int  main()
{
     //五則運算
     //int x;
     //int y;
     int x=23y=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

返回列表