能否以圖畫繪給我...只是需要流程圖...謝謝
這個攸關我的期未分數.禮拜2要交
#include <stdio.h>
#include <stdlib.h>
void addnew(), check(), del();
char yorn;
typedef struct
{
int no;
char name;
int Chinese, English, Law;
}std;
std student;
int main(int argc, char *argv[])
{
while(1)
{
int choice;
system("CLS");
printf("要<新增>請按 1\n要<查詢>請按 2\n要<刪除>請按 3\n要<離開>請按 4\n請輸入你的選擇:");
scanf("%d", &choice);
switch(choice)
{
case 1:
addnew();
break;
case 2:
check();
break;
case 3:
del();
break;
case 4:
system("CLS");
printf("謝謝你的使用!!\n");
system("PAUSE");
exit(0);
break;
default:
printf("錯誤的選擇!!\n");
system("PAUSE");
break;
}
}
system("PAUSE");
return 0;
}
void addnew()
{
int i;
char yorn;
for(i=0; i<5; i++)
{
printf("請輸入第%d位的學號:", ..
訪客只能看到部份內容,免費 加入會員 或由臉書 Google 可以看到全部內容