07 2020 档案

摘要:1 #include <stdio.h> 2 #include <stdlib.h> 3 4 struct stud_node { 5 int num; 6 char name[20]; 7 int score; 8 struct stud_node* next; 9 }; 10 11 struct 阅读全文
posted @ 2020-07-18 16:28 jason2018 阅读(331) 评论(0) 推荐(0) 编辑
摘要:1 #include <stdio.h> 2 #include <string.h> 3 int main(void) 4 { 5 char s[4][19]; 6 int len; 7 8 for (int i = 0; i < 4; i++) 9 { 10 scanf("%s", s[i]); 阅读全文
posted @ 2020-07-13 20:17 jason2018 阅读(217) 评论(0) 推荐(0) 编辑
摘要:1 #include <stdio.h> 2 #define MAXS 30 3 4 char *search(char *s, char *t); 5 void ReadString( char s[] ); /* 裁判提供,细节不表 */ 6 7 int main() 8 { 9 char s[ 阅读全文
posted @ 2020-07-13 19:15 jason2018 阅读(237) 评论(0) 推荐(0) 编辑
摘要:1 #include <stdio.h> 2 3 #define MAXS 10 4 5 char* match(char* s, char ch1, char ch2); 6 7 int main() 8 { 9 char str[MAXS], ch_start, ch_end, * p; 10 阅读全文
posted @ 2020-07-13 18:56 jason2018 阅读(592) 评论(0) 推荐(0) 编辑
摘要:1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <string.h> 4 5 typedef struct node 6 { 7 char name[11]; 8 char birthday[9]; 9 char phone[18]; 10 阅读全文
posted @ 2020-07-09 19:39 jason2018 阅读(320) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示