Computer Science, asked by gowrimurali81, 10 months ago

this is a computer program question
"to find the volume of cylinder"

Answers

Answered by ashokmurugana79
1

Answer:

Volume of Cylinder = π r2 h

Explanation:

In the case of a right circular cylinder, the volume or capacity is the product of the base area and height.

Answered by Anonymous
6

Answer:

Java Code to find the volume and surface area of a cylinder

import java. util.

Scanner;

public class prog {

public static void main(String[] args) {

Scanner obj = new Scanner(System. in);

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

double r = obj. nextDouble();

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

double hgt = obj. nextDouble();

Similar questions