Skip to content

Commit

Permalink
1.2.3
Browse files Browse the repository at this point in the history
delete 1.2.2
  • Loading branch information
junj1ehx authored May 16, 2017
1 parent f7859ec commit a21ce52
Show file tree
Hide file tree
Showing 7 changed files with 793 additions and 753 deletions.
8 changes: 4 additions & 4 deletions add.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ void add(struct task **top,struct task **end){
temp = temp->next;
}
//value for giving id
printf("名前を入力してください\n");
printf("insert name:\n");
gets(temp->name);
printf("メールアドレスを入力してください\n");
printf("insert mail:\n");
gets(temp->mail);
printf("グループを入力してください\n");
printf("insert group:\n");
gets(temp->group);
printf("性別を入力してください(1は男性、2は女性で)\n");
printf("insert sex (1)male (2)female\n");
scanf("%d",&sex);
temp->next = NULL;
temp->sex = sex;
Expand Down
Loading

0 comments on commit a21ce52

Please sign in to comment.