Computer Science, asked by Avendra19, 5 months ago

Write an algorithm and flowchart to find the volume of cone

Answers

Answered by BrainlySamrat
5

Explanation:

Java Program

public class cone{

public static void main(String args[])

{

int height=38;

int radius=35;

double pie=3.14285714286;

double volume=pie*(radius*radius)*height/3;

System.out.println("Volume of the cone="+volume);

Similar questions