I'm new to C++ and programming in general . I'm trying out small programs just to get my hand dirty . Below is a program I created for calculating the volume of a cone.
Problem : No matter what I do the output is always an integer . I want to get it to two decimal points accuracy . I've tried changing the variables to double and long double to get higher precision and nothing works.
How can I fix this? And why is this happening ? (In detail if possible) I've even asked few junior lecturers at UNi so far no one gave me a proper answer.
int main (){
float radius,length,volume ;
const float PI =22/7.0f;
cin >> radius >> length;
volume =1/3.0f *radius*radius*length;
cout << "Volume is " << volume <<endl;
return 0;
}
I'm using g++ on Fedora
EDIT : I Tried this earlyer with inputs like 50 60/70 50 /120 40 which gives integers. Smaller inputs like 3 4 gives decimals.
EDIT : setprecision() works. thanks for everyone for sent this