Server IP : 172.16.15.8 / Your IP : 18.188.101.251 Web Server : Apache System : Linux zeus.vwu.edu 4.18.0-553.27.1.el8_10.x86_64 #1 SMP Wed Nov 6 14:29:02 UTC 2024 x86_64 User : apache ( 48) PHP Version : 7.2.24 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0705) : /home/snbittner/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
// CS112 CS I Assignment 2 // Due: Wed. Sept. 29, 2010 // // File Name: area.cpp // Author: Stephanie Bittner // Instructor: Dr. Wang // // Compile: g++ area.cpp // Run: ./a.out // // Goal : read the radius and height of a cylinder and out its // volume display to one decimal place. // #include <iostream> #include <iomanip> //p.20, for setprecision(N) using namespace std; int main() { cout << fixed << showpoint << setprecision(2); const float PI = 3.1415; float radius, height, volume; cout << "Input the radius - "; cin >> radius ; cout << "Input the height - "; cin >> height ; volume = PI * radius * radius * height; // area = PI * pow(radius, 2.0) * height; cout << "The volume of the cylinder is: " << volume << endl; return 0; }