pow函数 宏定义
#include <iostream> #include <math.h> #define PI 3.14159 using namespace std; int main() { int R; cin >>R; double V = (4/3.0) * PI * pow(R,3); printf("VOLUME = %.3lf",V); return 0; }