- 博客(4)
- 收藏
- 关注
原创 [SAS学习]利用libname导入数据
SAS导入数据的方式有多种,初学者最常用的方法是通过import wizard或者proc import方式导入,而很少利用libname导入(至少我现在才注意到可以这样实现的)。环境:win7 x64;SAS 9.4实验数据:%let path=d:\;proc export data=sashelp.class outfile="&path.班级.xlsx" dbms=xlsx
2015-01-11 19:34:13 13762
原创 [Java学习]二分法找真值
public class Test { public static void printOut(double num, double c) { System.out.println("the true value is " + num + "."); System.out.println("the estimate value is " + c + "."); } public
2015-01-07 17:50:58 205
原创 [Java学习]阶乘求法
public class Test { public static int fatorial1(int num) { if(num == 1) { return 1; } else { return num * fatorial1(num - 1); } } public static int fatorial2(int num) { int s = 1;
2015-01-06 22:53:40 379
原创 [java学习]九九乘法表
public class Test { public static void multiTable() { for(int i=1; i<=9; i++) { String str0 = ""; for(int j=1; j<=i; j++) { String str1 = i+"*"+j+"="+i*j+" "; str0 = str0 + str1;
2015-01-06 13:11:47 184
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人