怎样以指数形式输出超大数
如20! (20的阶乘)
收起
#include "stdio.h" #include "math.h" int main(){ double d = pow(10,20); printf("d=%lf",d); }
报告相同问题?