Write a C program named assignment04.cpp that will
where the area of a circle is calculated by
area = PI * radius * radius
where the circumference of a circle is calculated by
circumference = PI * radius * 2
where the area of a cylinder is calculated by
area = 2 * PI * radius * radius + height * PI * radius * 2
where the volume of a cylinder is calculated by
volume = PI * radius * radius * height
where the area of a cylinder is calculated by
volume = (1 / 3) * (PI * radius * radius * height)
All input and output (cin and cout) are in maim()
in main()
radius is ??????
height is ??????
area of the circle is ????????
circumference of the circle is ????????
area of the cylinder is ????????
volume of the cylinder is ????????
volume of the cone is ????????
#include <iostream>
using namespace std;
#define PI 3.14159
float areaCircle(float radius) {
return PI * radius * radius;
}
float circumCircle(float radius) {
return PI * radius * 2;
}
float areaCylinder(float radius, float height) {
return 2 * PI * radius * radius + height * PI * radius * 2;
}
float volumeCylinder(float radius, float height) {
return PI * radius * radius * height;
}
float volumeCone(float radius, float height) {
return (1.0 / 3) * (PI * radius * radius * height);
}
int main() {
float radius, height;
cout << "Enter radius: ";
cin >> radius;
cout << "Enter height: ";
cin >> height;
cout << "radius is " << radius << endl;
cout << "height is " << height << endl;
cout << "area of the circle is " << areaCircle(radius) << endl;
cout << "circumference of the circle is " << circumCircle(radius) << endl;
cout << "area of the cylinder is " << areaCylinder(radius, height) << endl;
cout << "volume of the cylinder is " << volumeCylinder(radius, height) << endl;
cout << "volume of the cone is " << volumeCone(radius, height) << endl;
return 0;
}
Write a C program named assignment04.cpp that will ask for and read in a float for...
The statement in the following program is in the incorrect order. Rearrange the statements so that they prompt the user to input the shape type (rectangle, circle, or cylinder) and the appropriate dimension of the shape. The program then outputs the following information about the shape: For a rectangle, it outputs the area and perimeter, for a circle, it outputs the area and circumference; and for a cylinder, it output the volume and surface area. After rearranging the statements, your...
C++ programming question will upvote
A) One of the problems that have been discussed in the class is to write a simple C++ program to determine the area and circumference of a circle of a given radius. In this lab you will be rewriting the program again but this time you will be writing some functions to take care of the user input and math. Specifically, your main function should look like the following int main //the radius of the...
I'm trying to write a program that can ask a user about what type of solid they have and to be able to enter values like radius and length of the shape so the program can calculate the volume of a shape and print the result. I also want to give them a repeating option to input another shape if they want to. I'm trying to use at least 7 functions that can display an output, the volumes of a...
A) One of the problems that have been discussed in the class is to write a simple C++ program to determine the area and circumference of a circle of a given radius. In this lab you will be rewriting the program again but this time you will be writing some functions to take care of the user input and math. Specifically, your main function should look like the following: int main() { double radius; double area; double circumference; //the radius...
PLEASE TYPE OUT IN TEXT (please no pdf or writing) C++ CODE Consider the following program in which the statements are in the incorrect order. Rearrange the statements in the following order so that the program prompts the user to input: The height of the base of a cylinder The radius of the base of a cylinder The program then outputs (in order): The volume of the cylinder. The surface area of the cylinder Format the output to two decimal...
Consider the following program in which the statements are in the incorrect order. Rearrange the statements so that the program prompts the user to input the height and the radius of the base of a cylinder and outputs the volume and surface area of the cylinder. Formant the output to two decimal places. #include <iomanip> #include <cmath> int main () {} double height; cout << ”Volume of the cylinder = “ <<PI * pow(radius, 2.0) * height << endl; cout...
In C++
Amanda and Tyler opened a business that specializes in shipping
liquids, such as milk, juice, and water, in cylindrical containers.
The shipping charges depend on the amount of the liquid in the
container. (For simplicity, you may assume that the container is
filled to the top.) They also provide the option to paint the
outside of the container for a reasonable amount. Write a program
that does the following:
Prompts the user to input the dimensions (in feet)...
I he following formula gives the distance between two points (x1, yl) and (02, y2) in the Cartesian plane The main0 function is provided. You should implement the following functions: sqrt [ (x2-x1), (y2-yl) 1. Fi ndRadius... ): This function takes as its parameter four numbers that represent the center and a point on the circle, finds and returns the circle's radius. 2 CircleCalculations(....: This function takes as its parameter a number that represents the radius of the circle and...
c++ Please help! i keep getting an error message. I think my
main problem is not understanding the circle calculations function
and how both the area and the circumference is returned from the
function. I know & needs to be used, but I am unsure how to use
it.
Copy the following code and run it. You should break it into the following 3 functions getValidinput - which asks the user to enter the radius and then make sure that...
1. Write a program that determines the area and perimeter of a square. Your program should accept the appropriate measurement of the square as input from the user and display the result to the screen. Area of Square = L (squared) Perimeter of Square = 4 * L 2. Write a program that determines the area and circumference of a circle. Your program should accept the appropriate measurement of the circle as input from the user and display the result to...