answersLogoWhite

0


Best Answer

It depends what you regard as being "special". Once you define the criteria for "special" you can formulate an algorithm that determines whether or not a given number meets that criteria. For instance, if you regard prime numbers as being special, you need a predicate to test whether a given number is zero, prime or composite. If prime then it is indeed special, otherwise it isn't. A predicate is a function that returns true or false depending on its input(s).

As a simple example, if we regard even numbers as being special, then we need to test if the number has the prime factor 2. If so, it is special, otherwise it is not. We can test this by dividing the number by 2 and testing the remainder. If the remainder is zero, the number is even and is therefore special. We use the modulo operator (%) to determine the remainder after integer division:

bool is_even (int n) { return (n % 2) == 0; }

User Avatar

Wiki User

6y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

6y ago

First, decide WHAT SORT OF properties you want to check for, to label a number as "special".Then, write a method to check for each of those properties; for example:

* Is the number a square number, or some other power?

* Is the number a Prime number?

* Is the number a perfect number?

etc.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you check whether a number is special number or not by Java?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Write a java programme to check whether the number is twin prime or not?

Find a prime number, add 2 to the number. Check if the new number is prime. IE : 3 is prime. 3+2 =5. 5 is prime. (3,5) are twin primes.


How do you find out whether Java is installed on Linux?

Enter "java -version" into a terminal. If Java is installed, it will tell you the version number. If it is not installed, it will say "command not found."


Is check a keyword in java?

No, 'check' is not a keyword in java language.


How many provinces are there on the island of java Indonesia?

6 provinces: Special Capital Territory of Jakarta, Banten, West Java, Middle Java, East Java and Special Territory of Yogyakarta


What is the use of the instanceof keyword in Java?

That is used to verify whether an object is based on the specified class (or a subclass).


How do you make a BINGO card using Java 3.0 that when you run again the number in the bingo card will not be seen again..it would be in random?

I don't know about Java 3.0 but with the current version of Java 5.0 The Random class could be used or the Math.random() method (which really uses the Random class). The way I would approach this after getting the random number generator down is to make a class to be the Bingo Card, perhaps implemented with an instance of a 2D Array (an Array of Arrays) to hold each number, perhaps a 2D array to hold whether each box is stamped, and a method to check whether I have a bingo. If you have questions about 2D Arrays and how to manipulate them check out the link below.


How does java support the concept of destructer in java?

In Java, Java does support the concept of destructor, it's done via special method finalize.


How do you print non-prime numbers in java?

Loop through some numbers - for example, 2 through 100 - and check each one whether it is a prime number (write a second loop to test whether it is divisible by any number between 2 and the number minus 1). If, in this second loop, you find a factor that is greater than 1 and less than the number, it is not a prime, and you can print it out.


How do you check whether there is a java in your computer?

Go to the command line by typing "cmd" into the window opened with run on the start menu. the enter "java" and press enter. If you have java installed it will tell you the different options you can use on the command line and if it is not installed then it will come up with an error message.


How can one check which version of Java is on his computer?

The easiest way to check which version of Java is running on a computer is to ask Java directly. The website Java Tester has conveniently provided an applet which finds and displays the Java version currently used by the computer.


What did they make Minecraft on?

Java, the .exe's just run the java with special parment's as far as i can see


What are some of the different features of Java?

Check the link below for the Java entry in Answers.com.