欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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);
//              }
//          }
//      }
    }
}