我的程序应该显示请求形状的名称。我不习惯使用字符串,那么我将如何回显用户输入(C 显示锥体等)?我猜测某种 if 语句,但不知道如何编写它。
样本:
Hello. Welcome to the shape volume computing program.
Which shape do you have? (C for cone, U for cube, Y, for cylinder P for pyramid, S for sphere, or Q to quit)
Enter shape: U
okay, cube. Please enter the length of a side: 3
okay, the length of the side = 3
the volume = 27
enter shape: C
okay, cone. Please enter the radius of the base: 2
please enter the height: 3
okay, the radius = 2 and the height = 3
the volume = 12.56
enter shape: Q
bye!
代码:
int main()
{
string C,U,Y,P,S;
C= "cone";
U= "cube";
Y= "cylinder";
P= "pyramid";
S= "sphere";
int Q= -1;
cout<< " Enter C for cone, U for cube, Y for cylinder, P for pyramid, S for sphere or Q
to quit. " <<endl;
cin>> C,U,Y,P,S,Q;
if(Q= -1)
cout<< " Goodbye! " <<endl;
return 0;
}