没有与这些操作数匹配的">>"运算符

#include"stdafx.h"#include<iostream>#include<cmath>usingnamespacestd;enumGeometric_Ty... #include "stdafx.h"
#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;
请问这一行为什么会报错?
展开
 我来答
爱教育爱学习
高粉答主

2019-10-19 · 学而不思则罔,思而不学则殆
爱教育爱学习
采纳数:384 获赞数:112736

向TA提问 私信TA
展开全部

#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
展开全部
enum不能隐式转换成int,要先cin到一个int里面然后转换过去
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
GTA小鸡
高粉答主

2018-05-16 · 醉心答题,欢迎关注
知道大有可为答主
回答量:2.6万
采纳率:78%
帮助的人:1.3亿
展开全部
enum在内存中是以整型存储的,不能直接读入enum,而需要读入enum对应的整数值。
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!";
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式