摘要: JavaScript实现省市区三级联动 阅读全文
posted @ 2017-08-09 12:29 微笑的喵~ 阅读(445) 评论(0) 推荐(0) 编辑
摘要: import java.util.Stack; public class Sort { public static void main(String[] args) { String a = "43561dgfhdfxz"; int[] aa = { 12, 34, 76, 8, 45, 32, 1 阅读全文
posted @ 2017-08-09 12:20 微笑的喵~ 阅读(214) 评论(0) 推荐(0) 编辑
摘要: 1 public class Demo { 2 3 public static void main(String[] args) { 4 Count(137246); 5 } 6 7 /** 8 * 求一个整数中奇数与偶数的和 9 * 10 * @param a 11 */ 12 public static void Count(int a) { 13 int x... 阅读全文
posted @ 2017-08-09 12:16 微笑的喵~ 阅读(285) 评论(0) 推荐(0) 编辑
摘要: 1 import java.util.Scanner; 2 3 public class Count { 4 5 /** 6 * 输入一行字符,分别统计其中英文字母、空格、数字和其他字符的个数 7 * 8 * @param args 9 */ 10 public static void main(String[] args) { 11 int digitCount = 0... 阅读全文
posted @ 2017-08-09 12:10 微笑的喵~ 阅读(1056) 评论(0) 推荐(0) 编辑