没有与这些操作数匹配的">>"运算符
#include <iostream>
#include <cmath>
using namespace std;
enum Geometric_Type {cir, rec, squ};
int main()
{
Geometric_Type Type;
int Type;
float radius, a, b, area;
cout << "Input the type of geometry (first 3 letters)." << endl;
cin >> Type;
switch (Type)
{
case cir :
cout << "Input the radius of the circle." << endl;
cin >> radius;
area = 2 * 3.1415926 * pow(radius, 2);
cout << "The area of the circle is " << area << endl;
break;
case rec :
cout << "Input the lengths of the rectangle." << endl;
cin >> a >> b;
area = a * b ;
cout << "The area of the rectangle is " << area << endl;
break;
}
return 0;
}
cin >> Type;
请问这一行为什么会报错? 展开
#include<iostream>
<spanstyle="background-color:rgb(102,255,153);">//#include<string>缺少这句将会报错</span>。
usingnamespacestd;
classStudent
{
public:
voidget_value()
{
cout<<"pleasekeynum(001-999),name,sex(M/F):";
cin>>num>>name>>sex;
}
voiddisplay()
{
cout<<"num:"<<num<<endl;
cout<<"name:"<<name<<endl;//name定义了字符串变量
cout<<"sex:"<<sex<<endl;
}
private:
intnum;
stringname;//name定义了字符串变量
charsex;
};
classStudent1:publicStudent
{
public:
voidget_value1()
{
cout<<"pleaseinputageandaddr:";
cin>>age>>addr;
}
voiddisplay_1()
{
cout<<"age:"<<age<<endl;
cout<<"address:"<<addr<<endl;
}
private:
intage;
stringaddr;
};
intmain()
{
Student1stud;
stud.get_value();
stud.get_value1();
stud.display();
stud.display_1();
system("pause");
return0;
}
扩展资料
C++运算符重载
“<<”和“>>”本来是在C++中被定义为左/右位移运算符的,由于在iostream头文件中对它们进行了重载,所以使用它们能用作标准数据类型数据的输入和输出运算符。因此,在使用它们的程序中必须包含:#include<iostream>。
operator+(c2)即以c2为实参调用对象c1的运算符重载函数operator+(Complex&c2)。实际上,运算符重载函数有两个参数,由于重载函数是Coplex类中的成员函数,有一个参数是隐含的,运算符函数是用this指针隐式地访问类对象的成员,如this->real+c2.real,this代表c1,即实际上是c1.real+c2.real。
参考资料来源:百度百科—C++
2018-05-16
int type;
cin>>type;
auto Type = static_cast<Geometric_Type>(type); //将int型转换成enum
我现在是想实现 输入枚举常量名,然后输出对应的计算面积,比如输入 cir,输出的是cir的面积(area)。
这个该如何实现呢?
string typeName;
Geometric_Type type;
cin>>typeName;
if(typeName=="cir") type=cir;
else if(typeName=="rec") type=rec;
else if(typeName=="squ") type=squ;
else throw "no such enum type!";