Java program to perform the division of two numbers
GD.java
importjava.util.Scanner;classGD{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
godarda@gd:~$ javac GD.java godarda@gd:~$ java GD
———————————————————————————————————————————
Program to perform the division of two numbers
———————————————————————————————————————————
Enter the dividend 1
Enter the divisor 0
Division of two numbers is Infinity
———————————————————————————————————————————
godarda@gd:~$
Dear User, Thank you for visitng GoDarda. If you are interested in technical articles, latest technologies, and our journey further, please follow us on LinkedIn.