本帖最后由 lwb807 于 2012-12-10 20:57 编辑
本想验证下BCD转HEX程序正确性结果计算出错了,难不成是我的软件有问题?各位大大帮忙测试下!
void main()
{
union
{
unsigned long int a;
unsigned char c[3];
}abc;
unsigned long int b,d,e,f,h,j,k;
unsigned char w;
abc.a=0x87654321;
b=((abc.c[0]>>4)*100000)+((abc.c[0]&0x0f)*10000)+((abc.c[1]>>4)*1000)+((abc.c[1]&0x0f)*100)+((abc.c[2]>>4)*10)+(abc.c[2]&0x0f);
e=(abc.c[0]&0x0f)*10000;
/*
b=((abc.c[0]>>4)*100000)+((abc.c[1]>>4)*1000)+((abc.c[1]&0x0f)*100)+((abc.c[2]>>4)*10)+(abc.c[2]&0x0f);
d=abc.c[0]&0x0f;
d*=10000;
b+=d;
*/
while(1);
}
b和e的结果错了,但采用
/*
b=((abc.c[0]>>4)*100000)+((abc.c[1]>>4)*1000)+((abc.c[1]&0x0f)*100)+((abc.c[2]>>4)*10)+(abc.c[2]&0x0f);
d=abc.c[0]&0x0f;
d*=10000;
b+=d;
*/
运算下来结果就对了!
***********************************************************************分下*************************
上面我可能说的有些乱
简单讲就是KEIL中
unsingned long int e;
union
{
unsigned long int a;
unsigned char c[3];
}abc;
e=(abc.c[0]&0x0f)*10000;
在KEIL以上代码后运算出来的结果是错的!
********************************************************************把程序再简化下*******************************************
***************************************************************************************************************************
void main()
{
unsigned char w,y;
unsigned long int b,d,e,f,h,j,k;
union
{
unsigned long int a;
unsigned char c[3];
}abc;
abc.a=0x87654321;
w=abc.c[0]; //运行到这里 c[0]=0x80;
b=(abc.c[0]&0x0f)*10000; //运行到这里正确的结果应该 b=70000;可结果b=0x1170=4464;
e=abc.c[0]&0x0f; //把上行程序分化运算
e*=10000; //e=70000;结果就正确了
//以下废话
if(b==e)
{
y=1;
}
else
{
y=2;
}
while(1);
}
在两台电脑上跑结果是一样的 keil V4.00A版本 C51
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
一周热门 更多>