reduce code
This commit is contained in:
parent
c70d7992ab
commit
b98e8d9ae9
@ -39,11 +39,7 @@ 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) {
|
||||
|
Loading…
Reference in New Issue
Block a user