public class A{
public static void main(String[] args) {
int a;
int b;int c=0;
for(a=100;a<=999;a++){
for(b=100;b<=999;b++){
int n=a*b;
int temp=n;
while(n>0){
int r=n%10;
c=(c*10)+r;
n=n/10;
}
if(temp==c){
System.out.println(c);
}
}
}
}
}
代碼編譯良好,但運行時只是跳過所有內容並退出。請幫助。 P.S.問題4歐拉計劃代碼跳過運行
你應該學會[如何調試程序(https://ericlippert.com/2014/03/05/how-to-調試小程序/)。 –