answersLogoWhite

0


Best Answer

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

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you get the proper division in java?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What is the adjective for Java?

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


Does Visual Java plus plus and Java Builder is different from the Java language?

Yes!Visual Java plus plus and Java Builder is different from the Java language?


I am learning java next what you want me to read?

Java is an object-oriented programming language that is generally designed either to be compiled into native (machine) code or to be interpreted from source code at runtime. Java is intended to be compiled into a byte code, which is then run (generally using JIT compilation) by a Java Virtual Machine. Java training curriculum has been designed in such a way that it provides a proper understanding of Java Programming along with different features like file handling, string handling, threading, etc. Java is platform-independent and is used to develop Console Applications, Desktop Applications, and Web Applications. Java also supports multi-threading which helps it to perform multiple tasks at the same time. IT DESK promotes Java Training courses to the students to do Internships and all the Training is given on the latest version of Java. at our institutes all over India


What are the different java technologies?

There are several types of Java technology. Some examples of Java software are Java ME, Java EE, Java SE, and Java Card. Java made the JAVA development kit for those that develop in Java. There is also Java Virtual machine and some class libraries. Java is also famous for its languages like Clojure, Beanshell, Groovy, Gosu, Rhino, Kotlin, JRuby, Scala, and Jython.


Small Java-based programs are called?

Java applets

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.


Proper terms meaning cell division?

Mitosis and meiosis are the proper terms for cell division.


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.


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.


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

16-2.4


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.


What is the use of catch block in java?

the catch block catches the exception from the try block to display a proper message about the exception. Answered by, SOORAJ.M.S


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)