// cnmhwh.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include<iostream>
using namespace std;
class CCylinder{
private:
float m_fR;
float m_fH;
public:
void SetPara(float r,float h)
{
r=m_fR;
h=m_fH;
}
float GetVol(float r,float h){
float PI=3.14;
cout<<"体积为"<<(PI*(r*r))*h)<<endl;
}
float GetArea(float r,float h){
float PI=3.14;
float PI=3.14;
cout<<"表面积为"<<(PI*(r*r))+2*PI*r*h)<<endl;
}
};
int main(){
float a,b;
cout<<"请输入半径"<<endl;
cin>>a;
cout<<"请输入高"<<endl;
cin>>b;
CCylinder c;
c.GetVol(a,b);
c.GetArea(a,b);
return 0;
}
求大神帮我看看哪里错了呀~
运行了还是不对T T
还有别的语法问题吗
生成失败。。T T