else if 和 && 上显示错误陈述

发布于 2024-11-04 04:49:35 字数 120 浏览 3 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

椒妓 2024-11-11 04:49:35

如果您提到这适用于什么语言,将会有所帮助,但您可能应该使用 >= 而不是 =>

would help if you mentioned what language this is for but probably you should be using >= instead of =>

爱你不解释 2024-11-11 04:49:35

if (u <= 100) charge = u * 1.35;否则如果 (u >= 100 && u <= 200)

if (u <= 100) charge = u * 1.35; else if (u >= 100 && u <= 200)

情归归情 2024-11-11 04:49:35
else if(u=>100&&u<=200)
         ^^-- here 

指示的部分不应该是 >= 吗?另外,如果这就是整个代码,那么您就缺少了 else if 执行的某些内容......

if (...) {
   ...
else if (...) {
   you're missing this part here
}
else if(u=>100&&u<=200)
         ^^-- here 

shouldn't the indicated portion be >=? As well, if that's the entirety of the code, you're missing something for this else if to act on...

if (...) {
   ...
else if (...) {
   you're missing this part here
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文