C++(输入一个圆形游泳池的半径,游泳池外需要修建一个三米的路,算一下路两边的栅栏和修路要花多少钱)

#include

using namespace std;

class money{
	private:float r;
	public:
		float len(){return 2*3.14*r;	}
		float area(){return 3.14*r*r;}
		money(float a){r=a;	}
};

int main()
{
	float x,sum1,sum2;
	cout<<"游泳池的半径是:"<>x;
	money A(x),B(x+3);
	sum1=(A.len()+B.len())*35;
	sum2=(B.area()-A.area())*20;
	cout<<"围栏的造价是"<

C++(输入一个圆形游泳池的半径,游泳池外需要修建一个三米的路,算一下路两边的栅栏和修路要花多少钱)_第1张图片

 

你可能感兴趣的:(C++,蓝桥杯,c++,职场和发展)