Guest User

Untitled

a guest
Oct 19th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. public class Convert{
  2.  
  3. public static void main(String [] args){
  4. Scanner reader = new Scanner(System.in);
  5.  
  6. double dividend;
  7. double divisor;
  8. double quotient;
  9.  
  10. System.out.print("Enter the dividend ");
  11. dividend = reader.nextDouble();
  12.  
  13. System.out.print("Enter the divisor ");
  14. divisor = reader.nextDouble();
  15.  
  16. quotient = dividend/divisor;
  17.  
  18. System.out.print("The quotient is ");
  19. System.out.println(quotient);
  20. }
  21. }
Add Comment
Please, Sign In to add comment