65,209
社区成员
发帖
与我相关
我的任务
分享
#include<iostream>
#include <Afxtempl.h>
using namespace std;
class Car{
public:
void setLen(int len){
c_lenth = len;
}
void setWid(int wid){
c_width = wid;
}
int getLen(){
return c_lenth;
}
int getWid(){
return c_width;
}
private:
int c_lenth;
int c_width;
};
void main()
{
int i=10;
cout << i;
}