+ 2
How can i find the volume and area of a cylinder?
Area =2πrh+πr^2 and Volume=(πr^2)h please show me in a python program
2 Réponses
+ 2
area = (2*3.14*r*h)+((3.14*r*r)*(3.14*r*r));
Volume=(3.14*r*r)*h;
+ 1
Basically, this is how:
https://code.sololearn.com/cI73Rp8S8y53/?ref=app