c – 无法理解此程序中用于检查自动编号的错误?

c – 无法理解此程序中用于检查自动编号的错误?,第1张

概述int a = 0, b, c, e, n = 25;e = n;while(n!=0){ n=n/10; a++;}printf("%d",a);b = e * e;c = b % (pow(10, a));if(c==e) printf("automorphic"); 对于线 c=b%(pow(10,a)); 编译器显示错误: invalid operands
int a = 0,b,c,e,n = 25;e = n;while(n!=0){  n=n/10;  a++;}printf("%d",a);b = e * e;c = b % (pow(10,a));if(c==e)  printf("automorphic");

对于线

c=b%(pow(10,a));

编译器显示错误:

invalID operands of types `int' and `double' to binary `operator%'
解决方法 pow返回一个double,你不能在双打上使用%. 总结

以上是内存溢出为你收集整理的c – 无法理解此程序中用于检查自动编号的错误?全部内容,希望文章能够帮你解决c – 无法理解此程序中用于检查自动编号的错误?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1219994.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-05
下一篇 2022-06-05

发表评论

登录后才能评论

评论列表(0条)

保存