返回列表 發帖
[code]#include<iostream>

using namespace std;

int main()

{

     int ,y;      //宣告整數型態的x與y
         cout<<"請輸入x的值:  ";
          cin>>x;     //剛鍵入的數字會被指派給x
      
         cout<<endl;
         cout<<"請輸入y的值:   ";
         cin>>y;
         cout<<"x的位值"<<x<<endl;
         cout<<"y的位值"<<y<<endl;  
          system("pause");

          return 0;

}                  

TOP

返回列表