This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%config Completer.use_jedi = False |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdio.h> | |
#include<string.h> | |
int main() | |
{ | |
char c[20]; | |
char d[20]; | |
gets(c); | |
int i=0; | |
int j; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdio.h> | |
int main(){ | |
struct stud{ | |
int stud_id; | |
char stud_name[10]; | |
char stud_gender; | |
}; | |
struct stud istud; | |
scanf("%d%s %c",&istud.stud_id,istud.stud_name,&istud.stud_gender); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/****************** | |
* To DO: | |
* - [x] 插入 | |
* - [x] 打印插入结果 | |
* - [x] 删除 | |
* - [x] 打印删除结果 | |
* - [x] 查找 | |
* - [x] 打印查找结果 | |
******************/ | |
#include<stdio.h> |