Computer Science, asked by geetanagar2509, 2 months ago

Write a menu-driven program to find perimeter and area, of circle, square and rectangle.(switch case)

Answers

Answered by ronnie88
2

#include <stdio.h>

void main ()

{

int choice,r,l,w,b,h;

float area;

printf("Input 1 for area of circle\n");

printf("Input 2 for area of rectangle\n");

printf("Input 3 for area of triangle\n");

printf("Input your choice : ");

scanf("%d",&choice);

switch(choice)

{

case 1:

printf("Input radious of the circle : ");

scanf("%d",&r);

area=3.14*r*r;

break;

case 2:

printf("Input length and width of the rectangle : ");

scanf("%d%d",&l,&w);

area=l*w;

break;

case 3:

printf("Input the base and hight of the triangle :");

scanf("%d%d",&b,&h);

area=0.5*b*h;

break;

}

printf("The area is : %f",area);

}

Answered by BatoolAmina
0

Answer:

I will tell you later. it takes time to write

Similar questions