gpt4 book ai didi

java - 为什么我的程序没有结果?a肯定是625

转载 作者:行者123 更新时间:2023-12-01 17:57:12 27 4
gpt4 key购买 nike

package com.wukang.demo;

public class Demo {

public static void main(String[] args) {
for (int i = 11; i < 32;i++) {
int a = i * i;
int b = i & 10;
int c = i / 10;
if((a / 10 & 10) == c && (a & 10 ) == b ) {
System.out.println(a);
}
}
}
}

最佳答案

for (int i = 11; i < 32; i++) {
int a = i * i;
int b = i % 10;
int c = i / 10;
if ((a / 10 % 10) == c && (a % 10) == b) {
//---------------------------^
System.out.println(a);
}
}

您使用了 & 而不是 %

关于java - 为什么我的程序没有结果?a肯定是625,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43761779/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com