2015年3月28日

1.5 输出整数N的二进制1的个数(递归)

摘要: public static int getOne(int n){ if(n <2){ return n; }else{ return ((n % 2)+getOne(n/2)); } } 阅读全文

posted @ 2015-03-28 16:20 爱踢小菜 阅读(199) 评论(0) 推荐(0) 编辑

1.3输出任意实数

摘要: public class test { public static void printDigit(int n){ System.out.print(n); } public static void printInt(int n){ if(n>=... 阅读全文

posted @ 2015-03-28 16:00 爱踢小菜 阅读(126) 评论(0) 推荐(0) 编辑

导航