Java program to perform the division of two numbers
Codeaft.java
importjava.util.Scanner;classCodeaft{publicstaticvoidmain(Stringargs[]){floata,b;Scannersc=newScanner(System.in);System.out.println("———————————————————————————————————————————");System.out.println("Program to perform the division of two numbers");System.out.println("———————————————————————————————————————————");System.out.print("Enter the dividend ");a=sc.nextFloat();System.out.print("Enter the divisor ");b=sc.nextFloat();System.out.println("Division of two numbers is "+(a/b));System.out.println("———————————————————————————————————————————");}}
Output
codeaft@codeaft:~$ javac Codeaft.java codeaft@codeaft:~$ java Codeaft
———————————————————————————————————————————
Program to perform the division of two numbers
———————————————————————————————————————————
Enter the dividend 1
Enter the divisor 0
Division of two numbers is Infinity
———————————————————————————————————————————
codeaft@codeaft:~$
Dear User, Thank you for visitng Codeaft. If you are interested in technical articles, latest technologies, and our journey further, please follow us on LinkedIn.