学习成绩排名

复制代码
package test_33

import scala.io.Source
object test {
  def main(args: Array[String]): Unit = {

val it = Source.fromFile ("score.txt").getLines ().drop (1)
while (it.hasNext) {
  val content = it.next ()

  val arr = content.split (",")

  val name = arr (0)
  val yuwen = arr (1).toInt
  val shuxue = arr (2).toInt
  val yingyu = arr (3).toInt
  val total = yuwen + shuxue + yingyu
  val avg = total / 3
  println ("当前行是", name, yingyu, total, avg)

}
}
}
相关推荐
与仪共舞3 天前
罗德与施瓦茨 NRP18S|三路二极管射频功率传感器
scala·数据库架构
howard20056 天前
1.8.3 掌握Scala类与对象 - Scala基本骨架方法
scala·基本骨架方法
howard20057 天前
1.9 掌握Scala抽象类与特质
scala·抽象类·特质
howard20058 天前
1.8.2 掌握Scala类与对象 - 单例对象与伴生对象
scala·伴生对象·单例对象
howard200510 天前
1.7.1 掌握Scala函数 - 声明Scala函数
scala·声明scala函数·显式声明·隐式声明
howard200512 天前
1.6.4 掌握Scala数据结构 - 元组
scala·元组
howard200512 天前
1.6.5 掌握Scala数据结构 - 集合
scala·集合
蓝眸少年CY13 天前
Scala - 基础教程
开发语言·后端·scala
howard200513 天前
1.6.3 掌握Scala数据结构 - 映射
scala·可变映射·不可变映射
亿牛云爬虫专家14 天前
拒绝代理池雪崩:Scala + Akka 构建高并发的路由分发实战
scala·高并发·爬虫代理·代理ip·隧道代理·akka actor 模型·api代理