c++提示error C2297: '%' : illegal, right operand has type 'double'是什么意思 guess=guess%pow(10,i);这句话有错吗guess是int型... guess=guess%pow(10,i);这句话有错吗guess是int型 展开 我来答 可选中1个或多个下面的关键词,搜索相关资料。也可直接点“搜索资料”搜索整个问题。 opera c++ illegal right double 搜索资料 2个回答 #热议# 海关有哪些禁运商品?查到后怎么办? 宝爸日记 推荐于2018-03-28 · TA获得超过115个赞 知道答主 回答量:93 采纳率:50% 帮助的人:52.6万 我也去答题访问个人页 关注 展开全部 pow的参数和返回值类型是double。你可以改成guess=guess%(int)pow(10,i);试一下。但是当double型数据强制转化为int型时会舍去小数部分。计算的结果可能会有误差。 已赞过 已踩过< 你对这个回答的评价是? 评论 收起 由清安黄赋 2019-05-04 · TA获得超过3.7万个赞 知道大有可为答主 回答量:1.4万 采纳率:28% 帮助的人:641万 我也去答题访问个人页 关注 展开全部 using错误了,inta,b;还有不用这么麻烦的,直接调用库函数就行,了解怎么做的就行#includeusingnamespacestd;pow(x,y);//即x的y次方 已赞过 已踩过< 你对这个回答的评价是? 评论 收起 推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询 广告您可能关注的内容零基础javaJava工程师2024革新版,高薪就业加速器!m.imooc.com查看更多 其他类似问题 2018-03-29 error C2297: '+' : illegal, right operand has type 'double (__cdecl *)(double )' 5 2018-04-06 error C2297: '^' : illegal, right operand has type 'double ' #include 不知道哪错了,刚学 13 2011-11-27 c++语法错误 error C2297: '^' : illegal, right operand has type 'double' 1 2016-06-09 error C2297: '*' : illegal, right operand has type 'double (__cdecl *)()'怎么处理? 1 2013-05-23 error C2297: '<<' : illegal, right operand has type 'char [20]' 父类静态变量怎么使用,这错误怎么改 2018-09-15 c++初学求解 error C2297: '+=' : illegal, right operand has type 'int [5]' 2007-02-09 Vc++提示的CPP(208) : error C2297: '*' : illegal, right operand has type 'double [14]'是什么意思 4 2018-06-19 C语言初学者求帮助error C2297: '+' : illegal, right operand has type 'double (__cdecl *)(void)' 更多类似问题 > 为你推荐: