#include<stdio.h> #include<math.h> int main() { double x = pow(2.0,3.0); printf("The cube of 2.0 = %f\n",x); return 0; }
时间: 2024-10-29 03:04:18
#include<stdio.h> #include<math.h> int main() { double x = pow(2.0,3.0); printf("The cube of 2.0 = %f\n",x); return 0; }