double 的引用案例2023-11-22 17:34:10 doule 处理大数 当轮到int处理不了的大数时例如:求和 s = 2^0 + 2^1 + 2^2 +…+ 2^63 #include<stdio.h> int main(){ double t=1; //因为数太大了,所以用double double s=1; for(int i=1;i<=63;i++) { t*=2; s+=t; } printf("%f\n",s/2.5e7); } 上一篇:SAP UI5 Web Component不同React页面的跳转实现下一篇:JAVA静态代理和动态代理理解