struct Drug* Delete(struct Drug* head)
{
printf("-\n");
int t;
scanf("%d", &t);
struct Drug* p1,*p2;
while (head != NULL && (head->id == t))
{
p1 = head;
head = head->next;
free(p1);
}
i...
English Article | Word Count | Duration | Accuracy | Speed | Backspace | Error | Slogan |
---|---|---|---|---|---|---|---|
《药物管理系统-C语言02》 | 2589字 | 11.5分钟 | 100% | 189 CPM | 463 次 | 0 | 良好,向更快挑战! |
Suggestion:
可能对按键不够熟悉,或者对输入法不够熟练所导致,不要急慢慢来,先打对把准确率提高,然后逐渐的加快速度,最后才能打准打快。
|
|||||||
Inspirational quotes: 感谢曾经帮助和支持我的人,谢谢你们的指引和鼓励,照耀了那些黑暗而漫长的路,感谢一直憎恨和讨厌我的人,是你们掘凿出更深的痛苦,让我以后的幸福填充得更为丰盈。 ——郭敬明 | |||||||
What do you think of this article? Give it a rating and let it serve as a guiding light for others |