Q:

Java Program To Find Area Of Rectangle

0

Java Program To Find Area Of Rectangle by getting the input from the user

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

import java.util.Scanner;
public class demo1
{
   public static void main(String args[]) 
    {         
      Scanner input= new Scanner(System.in);        
      System.out.println("Enter the length:");
      double a= input.nextDouble();
      System.out.println("Enter the breadth:");
      double b= input.nextDouble();          
      double  area=a*b;
      System.out.println("Area of Rectangle is: " + area);      
   }
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now