p2->next=p1;
printf("學生:%d新增成功!\n",num);
return;
}p2=p2->next;
}
}
void del_student(struct student *head)
printf(「請輸入要刪除學生的學號:」);
scanf("%d",&num);
//char name[10];
while(p2)
if((p2->next!=null)&&((p2->next)->next!=null)&&(p2->next)->num==num)
if((p2->next!=null&&(p2->next)->next==null&&(p2->next)->num==num))
else
p2=p2->next;
}
struct student create_student(int num)
void look_student(struct student head)
printf("學生資訊
");printf("\n姓名\t學號\t性別\t年齡\n");
printf("******************************\n");
dowhile(p1);
printf("******************************\n");
}
void update_student(struct student *head)
printf(「請輸入要更新資訊學生的學號:」);
scanf("%d",&num);
while(p2)
p2=p2->next;
}printf(「沒有該學生!\n」);
}
4. 實現學生資料的從檔案讀與寫
void wirte_data(struct student *head)
fclose(fp);
void read_data(struct student *head)
fclose(fp);
}
用C語言實現簡單小遊戲
1.用c語言實現三子棋。define crt secure no warnings include include include define row 3 define col 3 char g broad row col void init char broad row col void pri...
用C語言實現簡單的掃雷遊戲
1.通過觀察遊戲,我們可以想到需要用兩個二維陣列來實現掃雷的功能。2.遊戲剛開始,需要需要顯示棋盤,用 遮蓋雷的座標,所以要有乙個填充棋盤的函式。3.通過rand 函式,隨機生成雷的座標,埋雷的函式。4.每次掃過後,都要顯示新的棋盤,顯示棋盤的函式,同時顯示該座標周圍雷的個數,並在該座標上顯示出來。...
用C語言實現簡單的掃雷遊戲
簡單說明下設計掃雷時的幾個要求 第一下不會被雷炸死 顯示該座標點周圍雷的個數 該座標周圍沒有雷時,可以實現展開一片沒有雷的區域。首先我們得建造出棋盤,乙個為設計者看的棋盤顯示所以雷的分布情況 方便設計者測試 還有乙個棋盤就是全部都是由 組成的遊戲棋盤來給玩家掃雷。首先我們先用巨集定義陣列的大小,ro...