
scala
wsow
这个作者很懒,什么都没留下…
展开
-
01_Scala基础语法
object demo01 { def main(args: Array[String]) { // print("Hello World!!!") // val x1:Int=112313 可以自动推断类型 // val x=10// lazy 只能修饰变量 // 优点 可以直接用于字符串拼接 优于Python // print("dfs"+"fgd"原创 2017-10-11 18:26:44 · 314 阅读 · 0 评论 -
scala 求100-200质数 ,杨辉三角
1. 100-200 质数import scala.math object test1 { def main(args: Array[String]):Unit={ def isPrime(p:Int):Boolean={ for (i <- 2 to math.sqrt(p).toInt) { if(p % i ==0){ retur原创 2017-10-12 19:50:34 · 5375 阅读 · 0 评论 -
Scala算法
为了练习scala,特地从网上找来Java经典问题算法大全,用scala来实现,记录于此。 /*【程序1】 题目:古典问题:有一对兔子,从出生后第3个月起每个月都生一对兔子,小兔子长到第三个月后每个月又生一对兔子,假如兔子都不死,问每个月的兔子总数为多少? 1.程序分析: 兔子的规律为数列1,1,2,3,5,8,13,21.... */ 方法1: [java] view原创 2017-10-12 19:52:36 · 3149 阅读 · 1 评论 -
移除ArrayBuffer中第一个负数后的所有负数
import scala.collection.mutable.ArrayBuffer object test4 { def main(args: Array[String]) { //需求:移除下列可变数组中的第一个负数之后的所有负数 val a =ArrayBuffer[Int]() a+=(1,2,3,4,-1,-3,-9,-4) var foundFi原创 2017-10-12 21:49:12 · 699 阅读 · 1 评论