aabb问题(输出所有的形如aabb的四位完全平方数)
Posted &虫虫
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了aabb问题(输出所有的形如aabb的四位完全平方数)相关的知识,希望对你有一定的参考价值。
public static void main(String[] args) {
for(int x=1; ;x++){
int n=x*x;
if(n<1000) continue;
if(n>9999) break;
int h1=n/100;
int lo=n%100;
if(h1%10==h1/10 && lo/10==lo%10){
System.out.println(n);
}
}
}
以上是关于aabb问题(输出所有的形如aabb的四位完全平方数)的主要内容,如果未能解决你的问题,请参考以下文章