1. 3. tab
2.scala.math.sqrt(3)
3.res is val
4. StringOps中找到
5.max方法返回两个数字中较大的那个
定义在那个类中?RichInt
6.计算2的1024次方
7. 随机素数
import scala.math.BigInt._
import scala.util.Random
8. 使用IDE
转成36进制
val s1=scala.math.BigInt(scala.util.Random.nextInt()).toString(36) print(s1)
9.首尾字母
println("=========9=======") val a="apple" print(a.take(1)) print(a.charAt(0)) print(a(0)) print(a.reverse(0)) print(a.takeRight(1))
10. takeRight是从尾部开始获取;
take是从首部开始获取;
drop是从字符串首开始去除字符串;
dorpRight是从字符串尾部去除字符串;