Write a function prototype of function Series which takes a double argument g and a character argument h and returns true or false. an
Answers
Answered by
0
Answer:
here is it
Explanation:
public class cylinder{
public static void main(String args[])
{
int height=1280;
int radius=35;
double pie=3.14285714286;
double volume=pie*(radius*2)*height;
System.out.println("Volume of the cylinder="+volume);
}
}
Similar questions