C中的IfElseIf误用与正确使用.doc

  1. 1、本文档共5页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
C中的IfElseIf误用与正确使用

题目:对学员的结业考试成绩进行评测 成绩=90: A 90成绩=80: B 80成绩=70:C 70成绩=60:D 解法1:没有理解if Else if本质,而且这种错误很容易犯 if (score = 90) // 条件1 { Console.WriteLine(A); } else if (80 = score score 90) //条件2 这里的score90根本不执行,没有理解if else if的本质 { Console.WriteLine(B); } // ... 上面的写法实际上没有理解if else if的本质 if else if的本质是:如果if条件不满足则执行Else中的条件判断。基于这个理解,上面的if语句条件1不满足的话,实际上就意味着score《90 所以条件2中的子条件score90是多次一举! 或者else?if?(score90 score =80) ,这里的Score90? 在条件1为假后,肯定为真! ? 解法2:数学思维,编译通不过 if (80 = score 90) // BUILD ERROR: Operator cannot be applied to operands of type bool and int { Console.WriteLine(B); } 正确写法 ? Console.WriteLine(请输入的你的成绩); int score = Convert.ToInt32(Console.ReadLine()); if (score = 90) { Console.WriteLine(A); } else if (score = 80) { Console.WriteLine(B); } else if (score = 70) { Console.WriteLine(C); } else if (score = 60) { Console.WriteLine(D); } ? 题目:比较用户名和密码是否正确并输入相应的提示 提示用户输入用户名,然后再提示用户输入密码,如果用户名是admin和密码是888888,那么提示正确 否则,如果用户名不是Admin,则提示用户名不存在,如果用户名是Admin则提示密码不正确. static void Main(string[] args) { Console.WriteLine(请输入用户名); string username = Console.ReadLine(); Console.WriteLine(请输入密码); string password = Console.ReadLine(); if (username == admin password == 888888) { Console.WriteLine(密码正确); } else { if (username != admin) { Console.WriteLine(用户名不正确); } else if (password != 888888) { Console.WriteLine(密码不正确); } }

文档评论(0)

wuailuo + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档