• 2021-04-14
    下面是一个将十进制正整数转换为2进制数的函数定义: void tobinary(int x) { while (x>0){ printf("%1d",x%2); } } 要实现函数的功能,则在空白处应该填写的程序语句是( )