class A { private int member = 20; private method() { println ("hello"); } def publicMetho…
package com.aruis.android.androidhomework1 import android.app.Activity import android.grap…
import java.security.MessageDigest int KB = 1024 int MB = 1024*KB File f = new File(args[0…
// String output = new Date().format('yyyy-MM-dd HH:mm:ss')
// 递归求n! factorialProperty = { n -> if (n == 0) return 1 n * factorialProperty(n - 1) /…