answersLogoWhite

0

import java.io.*;

public class ProperDivision

{

public static void main (String [] args) throws IOException

{

BufferedReader value = new BufferedReader (new InputStreamReader(System.in));

int n;

int sum;

int divisor;

String input;

System.out.print("Enter an integer:");

n = Integer.parseInt(value.readLine());

for(n=1;n==n;n++);

System.out.println("The proper divisor of "+ n + " are");

}

}

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

What is the plural for java?

What is the plural for France? Java is a proper-noun, a name. It doesn't need to be pluralized.


How you make a project in java?

You create a text file with a .java extension. Then you put a proper class definition.


What is the proper adjective for Java?

The proper adjective would be Javan, as in the Javan rhino, or Javanese.


What is the adjective for Java?

The proper adjective would be Javan, as in the Javan rhino, or Javanese.


What is the proper name for the doghouse in a division problem?

The proper name for the doghouse in a division problem is the "dividend." It is the number being divided.


How do you do a web show live on the web?

You need to have a proper presentation made and to use some proper applications such as Flash or Java applets.


Proper word part division for the term cholecystitis?

cholecystitis


What is the proper name for the 'bus stop' method?

Long division.


Is it necessary for you to learn c and c plus plus before you go for java?

No. You can learn Java first if you want. However, from a language perspective, C++ and Java are nearly identical1, and C is the predecessor of C++, so some people feel that the proper sequence is C, then C++, then Java. It is entirely up to you. ----------------------------------------------------------------------------- 1Nearly identical, that is, from a language perspective only. The environment and libraries are vastly different between C++ and Java.


Would the word division be capitalized in a sentence?

No, because it is n ot a proper n ou n.


What are the regulations and guidelines for using Java trademarks in software development and distribution?

When using Java trademarks in software development and distribution, it is important to adhere to the regulations and guidelines set by Oracle, the owner of Java. This includes obtaining proper licensing, following branding guidelines, and avoiding any misuse or misrepresentation of the Java trademarks. Failure to comply with these regulations can result in legal action.


What are operators in Java?

That refers to any symbol used to indicate some calculation. Here are some examples:+, -, *, / (for addition, subtraction, multiplication, division) ++, -- (to add or subtract one) (or), && (and)