Windows PowerShell 会话中使用 FSharp 代码编译器
$fSharpCode= @"
moduleTest
let HelloWorld =
"Hello World!!!!"
printfn "%s" HelloWorld
let rec Loop n =
seq [
if n...
DescriptionYou've decided to carry out a survey in the theory of prime numbers. Let us remind you that a prime number is a positive integer that has e...
分类:
其他好文 时间:
2014-07-27 22:51:29
阅读次数:
288
DescriptionYou've decided to carry out a survey in the theory of prime numbers. Let us remind you that a prime number is a positive integer that has e...
分类:
其他好文 时间:
2014-07-27 22:31:39
阅读次数:
809
import Foundation//1.函数的定义与调用//以 func 作为前缀,返回箭头 -> 表示函数的返回类型func sayHello(name: String) -> String { let greeting = "Hello " + name + "!" return ...
分类:
其他好文 时间:
2014-07-27 21:58:29
阅读次数:
344
这个题和POJ 1286 是一个题,只不过那是一个颜色数量固定的题而这个不固定。
这是链接:POJ 1286 Necklace
of Beads
下面是代码:
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#d...
分类:
其他好文 时间:
2014-07-26 02:30:16
阅读次数:
198
Swift知识点
下面来点实际写Swift代码要用到的,首先Swift是没有头文件的,没有.h文件。
变量声明
Swift的变量声明有两个关键字,var和let,其中var和javascript中的差不多,可以声明任何类型的对象,还可以通过var mystring:String 来指定类型。
var myVariable = 42
myVariable = 50
let myCons...
分类:
其他好文 时间:
2014-07-26 02:24:56
阅读次数:
255
Swift函数以关键字func 标示。返回类型->func GetName(strName:String)-> String{ return "for " + strName}let name = GetName("xx")println("\(name)")函数参数默认为let类型的。如果你...
分类:
其他好文 时间:
2014-07-26 00:17:16
阅读次数:
292
Let it Bead
Time Limit: 1000MS
Memory Limit: 65536K
Total Submissions: 4434
Accepted: 2916
Description
"Let it Bead" company is located upstairs at 700 Cannery Row ...
分类:
其他好文 时间:
2014-07-25 11:05:42
阅读次数:
315
Problem Description
A numeric sequence of ai is ordered if a1 < a2 < ... < aN. Let the subsequence of the given numeric sequence (a1, a2, ..., aN) be any sequence (ai1, ai2, ..., aiK), where 1 <= i1 ...
分类:
其他好文 时间:
2014-07-25 11:04:41
阅读次数:
253
Swift 的 String 和 Character 类型供了一个快速的,兼容 Unicode 的方式来处理代码字符串常量let strTest = "I'm Swift"字符串空值判断let emptyString = ""if emptyString.isEmpty {2. println....
分类:
其他好文 时间:
2014-07-24 16:57:15
阅读次数:
231