write a program that calculate the volume of cylinder after
user enters radius and height and show the algorithm used



write a program that calculate the volume of cylinder after user enters radius and height and show ..

Answer / evangelist sammy gicheha

# include<iostream.h>

//using namespace std;

# define PI 3.142;

int main ()

{

int Rad,Height;

double area;


cout<<"Enter the radius;";

cin>>Rad;

cout<<"Enter the Height;";

cin>>Height;

area = 3.142 * Rad * Rad * Height;

cout<<"Radius="<<Rad<<endl;

cout<<"Height="<<Height<<endl;

cout<<"The Area of the circle is"<<area<<"\n";

return 0;


}

Is This Answer Correct ?    5 Yes 4 No

Post New Answer

More C++ Code Interview Questions

. Write a program using two-dimensional arrays that computes the sum of data in tows and the sum of data in columns of the 3x3 (three by three) array variable n[3][3].

2 Answers   IBM,


write a program to calculate the radius for a quadratic equation use modular programming(function abitraction)hint use quadratic function

1 Answers   ICAN, Jomo Kenyatta University,


A Binary no. is given, we hav to find it's decimal equivalent.

2 Answers   Microsoft,


How can I Draw an ellipse in 3d space and color it by using graph3d?

0 Answers  


How to swap two ASCII numbers?

0 Answers  






can you please write a program for deadlock that can detect deadlock and to prevent deadlock.

0 Answers  


write a function that allocates memory for a single data type passed as a parameter.the function uses the new operator and return a pointer to the allocated memory.the function must catch and handle any exception during allocation

0 Answers   HCL,


write a program to perform generic sort in arrays?

0 Answers  


Write a simple encryption program using string function which apply the substitution method.

0 Answers  


what is the use of using for loop as "for(;;)"?

5 Answers   Satyam,


Algorithm in O(2n) Presently we can solve in our hypothetical machine problem instances of size 100 in 1 minute using algorithm A, which is a O(2n). We would like to solve instances of size 200 in 1 minute using algorithm A on a new machine. What is the speed of the new machine should be?

2 Answers   ABC, Qatar University,


hello friends, given an expression we have to remove the unwanted brackets in that expression. Eg : (a+b) ---> a+b (a+b)*(c)-----> (a+b)*c. Please mail me if you know the logic. My mail id is : saravana6m@gmail.com. Thank you in advance :-)

1 Answers   GrapeCity, Microsoft,


Categories