1 Star 0 Fork 53

fflush/c2go

forked from Apocalypse/c2go 
Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
5.go 347 Bytes
Copy Edit Raw Blame History
ZenQy authored 2015-03-29 18:12 . last push
// 学习成绩>=90 分的同学用 A 表示,60
// -89 分之间的用 B 表示,60 分以下的用 C 表示。
package main
import (
"fmt"
)
func main() {
var score int
fmt.Println("Please input the score:")
fmt.Scanln(&score)
if score >= 90 {
fmt.Println("A")
} else if score < 60 {
fmt.Println("C")
} else {
fmt.Println("B")
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/fflush/c2go.git
git@gitee.com:fflush/c2go.git
fflush
c2go
c2go
master

Search