填空题 当输入d的值22时,以下程序的输出结果是 [9]
void bin (int b)
if (b>= 2) bin(b/2);
cout<<b%2;

void main()
int d;
cin>>d;
bin(D) ;


  • 1、
【正确答案】 1、10110    
【答案解析】