current 和 stored 都是 16 位变量。问题是当存储为 65535 且电流为 3 时,此条件将失败,因为答案是否定的。
stored=current;
if(stored==0)
{
process the condition;
}
else if(current-stored>3)
{
process the condition;
}
else
{
reject;
}
如何检查这种情况?
current 和 stored 都是 16 位变量。问题是当存储为 65535 且电流为 3 时,此条件将失败,因为答案是否定的。
stored=current;
if(stored==0)
{
process the condition;
}
else if(current-stored>3)
{
process the condition;
}
else
{
reject;
}
如何检查这种情况?