第64行出现问题 在你程序中 第64行变成了 1 / 0 所以产生除0 异常
你的c等于0,0不能作为除数
i的类型是int,最大表示范围是32767(如果sizeof(int)==2),那么当n=300的时候,i最大也可以到达300,i*i最大必须能表示90000,而i*i的结果还是int的,发生了溢出,所以在循环到达300之前可能就出现了exception了。修改之后的程序代码首先是1.0/i,那么这个计算结果可是double类型的,表达的范围很...
Many Microsoft run-time library functions require floating-point support from a math coprocessor or from the floating-point libraries that accompany the compiler. Floating-point support functions are loaded only if required. When you use a floating-point type specifier in the format string of a cal...