0% found this document useful (0 votes)
29 views

Area Program in Java

The document contains code for a Java program that calculates the area of different shapes by prompting the user to select a shape and enter the necessary dimensions, then outputs the calculated area.

Uploaded by

Naman Pahuja
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
29 views

Area Program in Java

The document contains code for a Java program that calculates the area of different shapes by prompting the user to select a shape and enter the necessary dimensions, then outputs the calculated area.

Uploaded by

Naman Pahuja
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

import java.util.

Scanner;

public class Geometry

public static void main(String args[])

Scanner s=new Scanner(System.in);

System.out.println("MENU:");

System.out.println("Enter c for Area of a Circle");

System.out.println("Enter s for Area of a Square");

System.out.println("Enter r for Area of a Rectangle");

char op=s.next(). charAt(0);

switch(op)

case 'c': System.out.println("Enter radius:");

float r=s.nextFloat();

float ac=3.14f*r*r;

System.out.println("Area:"+ac);

break;

case 's': System.out.println("Enter side:");

int x=s.nextInt();

int as=x*x;

System.out.println("Area:"+as);

break;

case 'r': System.out.println("Enter height and base:");

float h=s.nextFloat();

float bs=s.nextFloat();

float art=0.5f*h*bs;

System.out.println("Area:"+art);

break;

default: System.out.println("Wrong choice");


}

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy