getchar()用于循环的问题
while(1){
char code2 = getchar();
if(code2!='q')
{
info->length++;
Node* new = (Node*)malloc(sizeof(Node));
p->next = new;
new->prev = p;
new->next = NULL;
new->seat = ++num;
new->code = code2;
code2 = getchar();
p = p->next;
}
else {
break;
}
}目标:依次读取getchar()中的char,存到单独的节点中
问题应该是出在前几行,
运行程序后,每个节点的值都是第一个getchar()接收到的值
求助,谢谢啦
if中为什么还要使用getchar?
你的while循环里面只需要一次getchar 为什么if(code2!='q')里面还有个getchar,不是外循环while(1)已经每一次都getchar();了吗
页:
[1]