完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
您好,我正在使用一个模块(%)操作,据我所知,有两种方法得到一个数字的模块:*num=num % 10;*num %=10;问题是第二种情况没有给出正确的结果。78),我得到不同的输出:*RIFT1(678)=4857 *RIFT2(678)=1449,有什么我不明白的吗?或者这是编译器的问题吗?P.D.:我使用的是APIC32 MX575 F512L
以上来自于百度翻译 以下为原文 Hello, I was using a module (%) operation and as far as I know there are two way to get the module of a number: * num = num % 10; * num %= 10; The problem is that the second case doesn't give the correct result. I'll elavorate. I have the following functions: uint16_t invert1( uint32_t input ) { uint16_t output; output = (uint16_t)(input%10000); output ^= 0xFFFF; output = output % 10000; return output; } uint16_t invert2( uint32_t input ) { uint16_t output; output = (uint16_t)(input%10000); output ^= 0xFFFF; output %= 10000; return output; } Under the same input (let's go with input = 678), I get different outputs: * invert1(678) = 4857 * invert2(678) = 1449 Is there something that I do not understand? Or is this a problem with the compiler? P.D.: I am using a PIC32MX575F512L |
|
相关推荐
2个回答
|
|
你使用的编译器版本是什么?我已经尝试了V1.44和V2.05,并得到相同的正确结果。
以上来自于百度翻译 以下为原文 What version of the compiler are you using? I've tried it with both v1.44 and v2.05, and get identical correct results. |
|
|
|
|
|
|
|
只有小组成员才能发言,加入小组>>
5183 浏览 9 评论
2005 浏览 8 评论
1932 浏览 10 评论
请问是否能把一个ADC值转换成两个字节用来设置PWM占空比?
3178 浏览 3 评论
请问电源和晶体值之间有什么关系吗?PIC在正常条件下运行4MHz需要多少电压?
2229 浏览 5 评论
739浏览 1评论
626浏览 1评论
有偿咨询,关于MPLAB X IPE烧录PIC32MX所遇到的问题
510浏览 1评论
PIC Kit3出现目标设备ID(00000000)与预期的设备ID(02c20000)不匹配。是什么原因
637浏览 0评论
535浏览 0评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-11-27 21:11 , Processed in 1.282152 second(s), Total 78, Slave 62 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号