标签: c algorithm printf pow
pow()函数返回错误的整数数据值。
例如: -
a=10; b=2; c=pow(a,b); printf(%d,c);
输出应为100,但它给出99 解决此问题的方法是什么?