Sphere
Adapted by Neilor Tonin, URI Brazil | Timelimit: 1
Make a program that calculates and shows the volume of a sphere being provided the value of its radius (R) . The formula to calculate the volume is: (4/3) * pi * R3. Consider (assign) for pi the value 3.14159.
Tip: Use (4/3.0) or (4.0/3) in your formula, because some languages (including C++) assume that the division’s result between two integers is another integer. 🙂
Input
The input contains a value of floating point (double precision).
Output
The output must be a message “VOLUME” like the following example with a space before and after the equal signal. The value must be presented with 3 digits after the decimal point.
Input Samples | Output Samples |
3 | VOLUME = 113.097 |
15 | VOLUME = 14137.155 |
1523 | VOLUME = 14797486501.627 |
Solution
#include <stdio.h>
int main()
{
float R;
double pi,v;
pi = 3.14159;
scanf("%f",&R);
v=(4/3.0)*pi*R*R*R;
printf("VOLUME = %.3lf\n",v);
return 0;
}
- How to Use URI Online Judge to Improve Your Coding Skills and Boost Your Career
- BEST FREE GIFT CARD GENERATOR in 2022
- উইন্ডোজ 11 এসে গেল, নজরকাড়া লুক, তাক লাগানো ফিচার্স!
- URI 2694 Solved by C programming
- URI Online Solve | 1957 Converting to Hexadecimal- Solution
- Android custom toolbar Android Studio | Android Tutorial
- URI Online Judge | 1040 Solution | Average 3
- URI Online Judge | 1038 Solution |Snack
- URI Online Judge | 1037 Solution | Interval
- URI Online Judge | 1036 Solution | Bhaskara’s Formula
- URI Online Judge Solution| 1035 Selection Test 1
- URI Online Judge Solution| 1021 Banknotes and Coins
- URI Online Judge Solution| 1020 Age in Days
- URI Online Judge Solution| 1019 Time Conversion
- URI Online Judge Solution| 1018 Banknotes
- URI Online Judge Solution| 1017 Fuel Spent
- URI Online Judge Solution| 1016 Distance
- URI Online Judge Solution| 1015 Distance Between Two Points
- URI Online Judge Solution| 1014 Consumption
- URI Online Judge Solution| 1013 The Greatest