第六周任务一

修改一
[html]  view plain copy
  1. #include <iostream>  
  2. using namespace std;  
  3. class C  
  4. {  
  5. private:  
  6.     int x;  
  7.  public:  
  8.     C(int x){this->xx = x;}  
  9.     int getX(){return x;}  
  10. };  
  11. void main()  
  12. {  
  13.      C c(5);  
  14.     cout<<c.getX();  
  15.     system("pause");  
  16. }  
修改二
[html]  view plain copy
  1. #include <iostream>  
  2. using namespace std;  
  3. class C  
  4. {  
  5. private:  
  6.     int x;  
  7.  public:  
  8.     C(int x){this->xx = x;}  
  9.     int getX()const  
  10.     {return x;}  
  11. };  
  12. void main()  
  13. {  
  14.      C c(5);  
  15.     cout<<c.getX();  
  16.     system("pause");  
  17. }  

你可能感兴趣的:(html,c,System,任务)