1.利用条件运算符的嵌套来完成此题:
学习成绩>=90分的同学用A表示,60-89分之间的用B表示,60分以下的用C表示。
2.程序分析:(a>b)?a:b这是条件运算符的基本例子。
3.程序源代码:
不支持这个运算符
package main import "fmt" func main() { var score int var grade string fmt.Print("请输入你的成绩:") fmt.Scan(&score) if score < 0 || score > 100 { fmt.Println("您输入的有误!") } else { if score >= 90 { grade = "A" } else if score >= 60 { grade = "B" } else { grade = "C" } fmt.Printf("你的成绩是:%d,成绩等级是:%s\n", score, grade) } }
以上所述就是小编给大家介绍的《golang99道练习题之15》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Domain-Driven Design Distilled
Vaughn Vernon / Addison-Wesley Professional / 2016-6-2 / USD 36.99
Domain-Driven Design (DDD) software modeling delivers powerful results in practice, not just in theory, which is why developers worldwide are rapidly moving to adopt it. Now, for the first time, there......一起来看看 《Domain-Driven Design Distilled》 这本书的介绍吧!