Solução por Lucas Maekawa comentário de João Guilherme.
É um problema bastante simples, basta substituirmos os valores na fórmula dada pela questão.
Segue código para melhor entendimento.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <cstdio> | |
#include <cmath> | |
#define PI 3.14159 | |
using namespace std; | |
int main() { | |
int r; | |
double vol; | |
scanf("%d", &r); | |
vol = 4.0/3 * PI * pow(r, 3); | |
printf("VOLUME = %.3f\n", vol); | |
return 0; | |
} |