2)Write a function to print a number in binary form.
void BinaryPrint( long decNumber)
{
long appearanceBinNum = 0L;
long decMultiplier = 1L;
while (decNumber > 0)
{
appearanceBinNum += decMultiplier*( decNumber %2);
decNumber /= 2;
decMultiplier *= 10;
}
cout
return;
}
for the 2nd one, 我的作業。(俺剛寫的,還沒調試:)
所有跟帖:
• <0 呢? -feicen- ♀ (0 bytes) () 05/09/2009 postreply 16:31:33
• 最好使用>>1和&運算符,不過小數不太清楚 -feicen- ♀ (0 bytes) () 05/09/2009 postreply 16:44:49
• 不過所有數既然都是二進製存儲,那麽用>> &得到的應該就是他的二進製 -feicen- ♀ (39 bytes) () 05/09/2009 postreply 17:19:21
• wow! -戲雨飛鷹- ♀ (0 bytes) () 05/09/2009 postreply 17:32:26
• 隻是0和1,用內存指針直接memcpy ASCII 碼就可以得到string,不用比較 -what124- ♂ (0 bytes) () 05/11/2009 postreply 05:36:12
• 那1000000000000000000000行嗎? -Windows8- ♂ (0 bytes) () 05/28/2009 postreply 11:12:02