摘要: #include <stdio.h> #include <stdlib.h> void true() { printf("ture"); } void false() { printf("false"); } int main(void) { int nums[5] = {0}; printf("请 阅读全文
posted @ 2022-03-31 18:50 一度です 阅读(333) 评论(0) 推荐(0)
摘要: #include <stdio.h>#include <stdlib.h> struct Node{ int ShuJu; //数据 struct Node* pNext; //连接下一个节点的地址}; void Look_ShuJu(struct Node* pHead); //查看数据struc 阅读全文
posted @ 2022-03-16 21:47 一度です 阅读(67) 评论(0) 推荐(0)