不正经题解
2026-05-01 21:09:40
发布于:香港
5阅读
0回复
0点赞
//链接说明(pow,scanf,printf)
extern "C" double pow(double,double);
extern "C" int scanf(const char*,...);
extern "C" int printf(const char*,...);
int main(){
unsigned int y;
scanf("%u",&y);
printf("%.4lf",pow(y,0.33333333));
}
这里空空如也





有帮助,赞一个