#include<iostream>
#include<stdio.h>
using namespace std;
void student_array();
void query();
void show_arr();
void student_entry();
struct student
{
char name[80];
char f_name[80];
char the_class[3];
char grade[2];
};
student std_arr[10];
char action;
int count;
int main()
{
cout<<"add 1st student"<<endl;
student_entry();
}
void student_entry()
{
if (count == 10)
{
cout<<"Memory Full!";
//break;
}
cout<<"enter name of student"<<endl;
cin>>std_arr[count].name;
//cout<<std_arr[count].name;
cout<<"enter student's father's name"<<endl;
cin>>std_arr[count].f_name;
cout<<"enter the class of student"<<endl;
cin>>std_arr[count].the_class;
cout<<"enter the grade of student"<<endl;
cin>>std_arr[count].grade;
query();
count++;
}
void query()
{
cout<<"what do you want to do?"<<endl;
cout<<"press a to add"<<endl;
cout<<"press s to show"<<endl;
cout<<"press q to quit"<<endl;
cin>>action;
//cout<<action;
switch (action)
{
case 'a':
{
student_entry();
break;
}
case 's':
{
show_arr();
break;
}
default:
{
cout<<"wrong entry";
query();
break;
}
}
}
void show_arr()
{
for (int i = 0; i < count; i++)
{
cout<<endl<<"Student No."<<count<<endl;
cout<<"Name: "<<std_arr[i].name<<endl;
cout<<"Father's Name: "<<std_arr[i].f_name<<endl;
cout<<"Class: "<<std_arr[i].the_class<<endl;
cout<<"Grade Achieved: "<<std_arr[i].grade<<endl;
}
}
我的开关结构在s。
的情况下没有调用show_arr()函数答案 0 :(得分:1)
在调用count
之前,您需要增加变量query
,否则不会执行for
循环。由于已经将一个学生添加到数组中,因此在进行查询之前增加此变量是有意义的。
答案 1 :(得分:1)
count
始终为零。
第一次从student_entry
致电main
时,在递增query
的值之前,您正在调用count
。现在,如果您输入a
,则下一位学生的数据将在str_arr[0]
处自动输入,而query
会在不更新count
的情况下被调用。
因此,无论何时输入's'
并调用函数show_arr
,count
的值都将为零。
不要从student_entry方法调用查询,只需增加计数并从中返回。请在主要功能的while(true)
循环中查询,然后根据输入的数据拨打student_entry
或show_data
或仅break
。