-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathNeonNumbers.java
40 lines (33 loc) · 1.14 KB
/
NeonNumbers.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import java.util.Scanner;
public class NeonNumbers {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("\nEnter the limit: ");
int limit = scanner.nextInt();
scanner.close();
boolean foundNeonNumber = false;
System.out.println("\nNeon numbers up to " + limit + ":");
for (int i = 0; i <= limit; i++) {
if (isNeonNumber(i)) {
System.out.println(i);
foundNeonNumber = true;
}
}
if (!foundNeonNumber) {
System.out.println("\nNo Neon numbers present in the specified limit.");
}
}
// Function to check if a number is a Neon number
public static boolean isNeonNumber(int num) {
int sumOfDigitSquares = 0;
// Calculate the sum of squares of digits
int square = num * num;
while (square > 0) {
int digit = square % 10;
sumOfDigitSquares += digit;
square /= 10;
}
// Check if the sum of squares equals the original number
return sumOfDigitSquares == num;
}
}