这个程序问题出在哪里?c++
1个回答
展开全部
你的C++程序主要问题是没有定义类的属性
你的程序我帮你改好了,你看看吧(改动的地方见注释)
class dog{
private: //这里定义类的私有属性
int age;
double weight;
public:
dog(int age,double weight):age(age),weight(weight){}
int getX(){return age;}
double getY(){return weight;}//这里把int改成double
};
#include<iostream>
using namespace std;//这里把uisng改成using
int main(){
dog a(1,30.5);
cout<<a.getX()<<"nian"<<endl;
cout<<a.getY()<<"KG"<<endl;
return 0;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询