edit4.c
来自「C语言编程工具 可以快捷 方便的编写程序」· C语言 代码 · 共 9 行
C
9 行
void find()
{ int x; llist *p;
printf("your choice:");
scanf("%d",&x);
p=head;
while(p!=NULL && p->data!=x)p=p->next;
if (p!=NULL)printf("it was found\n");
else printf("there is not the data!\n"); getch();
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?