能否以图画绘给我...只是需要流程图...谢谢
这个攸关我的期未分数.礼拜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 可以看到全部内容