题目内容
分析程序的执行过程,给出最后的结果struct node{ char ni;struct node *next;};int main(){ node *head, *p;int n=48;head=NULL;do{ p=new node;p->ni=n%8+48;//48是字符'0'的ASCII码p->next=head;head=p;n=n/8;}while(n!=0);//提示:看到n%8 n/8想到什么没有?p=head;while(p!=NULL){ cout<ni;p=p->next;}return 0;}
查看答案
搜索结果不匹配?点我反馈
更多问题