else if 和 && 上显示错误陈述
if(u<=100)
charge=u*1.35;
else if(u=>100&&u<=200)
最后这句话有什么问题吗?它显示一个错误。
if(u<=100)
charge=u*1.35;
else if(u=>100&&u<=200)
What's wrong with this last statement? It is showing an error.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您提到这适用于什么语言,将会有所帮助,但您可能应该使用
>=
而不是=>
would help if you mentioned what language this is for but probably you should be using
>=
instead of=>
if (u <= 100) charge = u * 1.35;否则如果 (u >= 100 && u <= 200)
if (u <= 100) charge = u * 1.35; else if (u >= 100 && u <= 200)
指示的部分不应该是
>=
吗?另外,如果这就是整个代码,那么您就缺少了else if
执行的某些内容......shouldn't the indicated portion be
>=
? As well, if that's the entirety of the code, you're missing something for thiselse if
to act on...