题目内容

请在( )中编写代码实现递归函数倒叙(从后向前)输出单链表内容.void pRight2Left(linklist head){if(head->next){( ____)}}

A. printf("%5d",head->next->data);pRight2Left(head->next);
B. pRight2Left(head->next);printf("%5d",head->next->data);
C. pRight2Left(head);printf("%5d",head->data);
D. printf("%5d",head->data);pRight2Left(head);

查看答案
更多问题

在填写大写金额时应紧接“人民币”填写,不得留有空白,未印有“人民币”的,应加填“人民币”。

A. 对
B. 错

1月、2月、10月大写前要加零,11月、12月大写前要加壹,3月~9月大写前的零,可加可不加。

A. 对
B. 错

1~9日、10日、20日、30日大写前要加零 11~19日前要加壹。

A. 对
B. 错

将不稳定系统变成稳定系统,可通过级联系统

答案查题题库