摘要: 大写字母 A~Z 65~90 小写字母a~z 97~122 数字0~9 48~ 57 阅读全文
posted @ 2015-09-04 11:32 fthjane 阅读(380) 评论(0) 推荐(0)
摘要: package basic40;import java.util.Scanner;public class CommonDivisor { public static int CommonDiv(int a, int b){ int max = a > b ? a : b; int min = a 阅读全文
posted @ 2015-09-04 09:55 fthjane 阅读(270) 评论(0) 推荐(0)