摘要:
1. 题目 读题 HJ99 自守数 考查点 自守数的英文是 automorphic number,也有一些文献称为 self-preservation number。这是指其任意次幂的末几位数字等于这个数本身的数。例如,5、6、25、76、376、625等都是自守数。 关于int 与 string 阅读全文
摘要:
1. 题目 读题 HJ99 自守数 考查点 自守数的英文是 automorphic number,也有一些文献称为 self-preservation number。这是指其任意次幂的末几位数字等于这个数本身的数。例如,5、6、25、76、376、625等都是自守数。 关于int 与 string 阅读全文
摘要:
1. 题目 读题 HJ97 记负均正 考查点 2. 解法 思路 代码逻辑 具体实现 public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = Integer.valueOf(sc.nex 阅读全文
摘要:
1. 题目 读题 HJ96 表示数字 考查点 2. 解法 思路 代码逻辑 具体实现 自有实现 public class HJ96 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); Syste 阅读全文
摘要:
1. 题目 读题 HJ94 记票统计 考查点 2. 解法 思路 代码逻辑 具体实现 public class HJ094 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int m = I 阅读全文
摘要:
1. 题目 读题 HJ91 走方格的方案数 考查点 2. 解法 思路 代码逻辑 具体实现 public class HJ091 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); System 阅读全文
摘要:
1. 题目 读题 HJ87 密码强度等级 考查点 2. 解法 思路 代码逻辑 具体实现 public class HJ087 { public static String[] grades = {"VERY_SECURE", "SECURE", "VERY_STRONG", "STRONG", "A 阅读全文
摘要:
1. 题目 读题 HJ86 求最大连续bit数 考查点 2. 解法 思路 代码逻辑 具体实现 public class HJ086 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); Syst 阅读全文
摘要:
1. 题目 HJ85 最长回文子串 读题 考查点 2. 解法 思路 代码逻辑 具体实现 public class HJ085 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); System. 阅读全文
摘要:
1. 题目 读题 HJ84 统计大写字母个数 考查点 2. 解法 思路 代码逻辑 具体实现 public class HJ084 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); Syste 阅读全文
摘要:
1. 题目 读题 HJ81 字符串字符匹配 考查点 2. 解法 思路 代码逻辑 具体实现 public static void main(String[] args) { Scanner sc = new Scanner(System.in); String target = sc.nextLine 阅读全文
|