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
阅读全文
摘要: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]);
阅读全文
摘要: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[
阅读全文
摘要: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
阅读全文
摘要: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
阅读全文