commit
eb0c7bcee4
@ -39,15 +39,11 @@ public class Armstrong {
|
||||
sum = sum + (remainder * remainder * remainder);
|
||||
number = number / 10;
|
||||
}
|
||||
if (sum == temp) {
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
return sum == temp;
|
||||
}
|
||||
|
||||
private static int inputInt(String string) {
|
||||
System.out.print(string);
|
||||
return Integer.parseInt(scan.nextLine());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user