1286: aabb
程序员文章站
2022-03-13 13:48:16
...
题目
Description
输出所有形如aabb的四位完全平方数,每一个一行
Input
无
Output
输出所有形如aabb的四位完全平方数,每一个一行
Sample Input
Sample Output
7744
代码块
package cn.test02.cc;
public class J1286 {
public static void main(String[] args) {
System.out.println(7744);
// for (int i = 1111; i < 9999; i++) {
// int s = (int) Math.sqrt(i);
// if (s * s == i) {
// int a = i / 1000;
// int c = i / 100 % 10;
// int b = i % 10;
// int d = i / 10 % 10;
//
// if (a == c && b == d) {
// System.out.println(i);
// }
// }
// }
}
}
上一篇: 1286:aabb
下一篇: 打印1到100之间的奇数
推荐阅读
-
POJ1286 Necklace of Beads(Polya定理)
-
Leetcode 1286:字母组合迭代器(超详细的解法!!!)
-
计作数值是否是包含AA AABB AAA AAAA AAABBB AAAABBBB AAABBBCCC
-
POJ1286 Necklace of Beads(Polya定理)
-
计作数值是否是包含AA AABB AAA AAAA AAABBB AAAABBBB AAABBBCCC
-
计作数值是否是包含AA AABB AAA AAAA AAABBB AAAABBBB AAABBBCCC
-
算法竞赛入门经典 aabb
-
20201011-pcl构造AABB\OBB包围盒
-
BZOJ3567 : AABB
-
1286: aabb