search
HomeJavajavaTutorialHow to check if a number is a sunshine number in Java?

How to check if a number is a sunshine number in Java?

If the square root of the next value of the input number is the perfect square of any number, the number is called a sunshine number.

To further explain, if we add 1 to any number, we get the next value. Then we need to find its square root. If we get an integer value, then we can say that it is the perfect square of some number. If we confirm that the next number has a perfect square, then the entered number is a sunshine number, otherwise it is not a sunshine number.

In this article, we will see how to check if a number is a sunshine number using Java programming language.

Show you some examples

The Chinese translation of

Instance-1

is:

Instance-1

The number entered is 80.

Let’s check this using the logic of sunshine numbers.

The next value of

80 = 80 1 = 81

The square root of 81=9

As we noticed here, 81 is the perfect square of 9.

Therefore, 80 is a sunny number.

The Chinese translation of

Instance-2

is:

Instance-2

The number entered is 48.

Let’s check this using the logic of sunshine numbers.

Next value of

48 = 48 1 = 49

The square root of 49=7

As we noticed here, 49 is a perfect square of 7.

Therefore, 48 is a sunshine number.

The Chinese translation of

Instance-3

is:

Instance-3

The number entered is 122.

Let’s check this using the logic of sunshine numbers.

Next value of

122 = 122 1 = 123

The square root of 123=11.09053651

As we noticed here, 123 is not a perfect square.

Therefore, 122 is a sunshine number.

Some other examples of sunshine numbers include 3, 8, 15, 24, 35, 48, 63, etc.

grammar

To get the square root of a number, we can use the built-in sqrt() method in the Math class in the java.lang package.

The following is the syntax for using this method to get the square root of any number.

double squareRoot = Math.sqrt(input_vale)

You can use Math.floor() to find the closest integer value.

Math.floor(square_root)

algorithm

  • Step 1 - Get an integer through initialization or user input.

  • Step 2 - Then we find its next value by adding 1 to it and store it in another variable.

  • Step 3 - We find the square root of the next value.

  • Step 4 - Now we are finding the closest perfect square root and subtracting it from the next square root value.

  • Step 5 - If the value after subtraction is zero, then we will get confirmation that it is an integer value, meaning that the next value is the perfect square of any number.

  • Step 6 − If we get confirmation that the next number is a perfect square number, then print that number is a sunshine number, otherwise it is not a sunshine number.

Multiple methods

We provide solutions in different ways.

  • By using static input values

  • By using user-defined methods

Let’s look at the program and its output one by one.

Method 1: By using static input values

In this method, the program will initialize an integer value, and then by using an algorithm, we can check whether a number is a sunshine number.

The Chinese translation of

Example

is:

Example

import java.util.*;
public class Main{
   public static void main(String args[]){
         //declare an int variable and initialize with a static value
         int inputNumber=8;

         //declare a variable which store next value of input number
         double next=inputNumber + 1;

         //Find the square root of the next number
         //store it as double value
         double square_root = Math.sqrt(next);

         //check whether the square root is a integer value or not
         //if yes return true otherwise false
         if(((square_root - Math.floor(square_root)) == 0))

         //if true then print it is a sunny number
            System.out.println(inputNumber + " is a sunny number.");
         else
            //if true then print it is a sunny number
            System.out.println(inputNumber + " is not a sunny number.");
   }
}

Output

8 is not a sunny number.

Method 2: By using user-defined methods

In this method we assign a static value as the input number and pass that number as parameter to a user defined method and then inside the method by using an algorithm we can check if the number is a Sunny numbers.

The Chinese translation of

Example

is:

Example

import java.util.*;
public class Main{
   public static void main(String args[]){
   //declare an int variable and initialize with a static value
   int inp=15;

   //call the user defined method inside the conditional statement
   if(checkSunny(inp))

   //if true then print it is a sunny number
      System.out.println(inp + " is a sunny number.");

   else
      //if true then print it is a sunny number
      System.out.println(" is not a sunny number.");
   }

   //define the user defined method
   static boolean checkSunny(int inputNumber){

      //declare a variable which store next value of input number
      double next=inputNumber + 1;

      //Find the square root of the next number
      // store it as double value
      double square_root = Math.sqrt(next);

      //check whether the square root is a integer value or not
      //if yes return true otherwise false
      return ((square_root - Math.floor(square_root)) == 0);
   }
}

Output

15 is a sunny number.

In this article, we explored how to check if a number is positive in Java using three different methods.

The above is the detailed content of How to check if a number is a sunshine number in Java?. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:tutorialspoint. If there is any infringement, please contact admin@php.cn delete
How does IntelliJ IDEA identify the port number of a Spring Boot project without outputting a log?How does IntelliJ IDEA identify the port number of a Spring Boot project without outputting a log?Apr 19, 2025 pm 11:45 PM

Start Spring using IntelliJIDEAUltimate version...

How to elegantly obtain entity class variable names to build database query conditions?How to elegantly obtain entity class variable names to build database query conditions?Apr 19, 2025 pm 11:42 PM

When using MyBatis-Plus or other ORM frameworks for database operations, it is often necessary to construct query conditions based on the attribute name of the entity class. If you manually every time...

How to use the Redis cache solution to efficiently realize the requirements of product ranking list?How to use the Redis cache solution to efficiently realize the requirements of product ranking list?Apr 19, 2025 pm 11:36 PM

How does the Redis caching solution realize the requirements of product ranking list? During the development process, we often need to deal with the requirements of rankings, such as displaying a...

How to safely convert Java objects to arrays?How to safely convert Java objects to arrays?Apr 19, 2025 pm 11:33 PM

Conversion of Java Objects and Arrays: In-depth discussion of the risks and correct methods of cast type conversion Many Java beginners will encounter the conversion of an object into an array...

How do I convert names to numbers to implement sorting and maintain consistency in groups?How do I convert names to numbers to implement sorting and maintain consistency in groups?Apr 19, 2025 pm 11:30 PM

Solutions to convert names to numbers to implement sorting In many application scenarios, users may need to sort in groups, especially in one...

E-commerce platform SKU and SPU database design: How to take into account both user-defined attributes and attributeless products?E-commerce platform SKU and SPU database design: How to take into account both user-defined attributes and attributeless products?Apr 19, 2025 pm 11:27 PM

Detailed explanation of the design of SKU and SPU tables on e-commerce platforms This article will discuss the database design issues of SKU and SPU in e-commerce platforms, especially how to deal with user-defined sales...

How to set the default run configuration list of SpringBoot projects in Idea for team members to share?How to set the default run configuration list of SpringBoot projects in Idea for team members to share?Apr 19, 2025 pm 11:24 PM

How to set the SpringBoot project default run configuration list in Idea using IntelliJ...

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.