根据姓名查找学生的学号

/*Copyright (c) 2013 ,烟台大学计算机学院
*All rights reserved.
作者:王至超
*完成日期:2013年12月10
*版本号:v1.0
*问题描述:根据姓名查找学生的学号
*样例输入:无
*样例输出:无
*问题分析:用简单的方法,学会活学活用
*/
#include 
#include
using namespace std;
void jiaohuan(int *p1,int *p2);
string name[50],num[50];
int n;
int main()
{
  void input_data();
  void search (string find_name) ;
  string find_name;
  cout<<"please input number of this class:";
  cin>>n;
  input_data();
  cout<<"please input name you want find:";
  cin>>find_name ;
  search (find_name);
  return 0;
}

void input_data()
{
    int i;
    for(i=0;i>name[i]>>num[i];

    }

}

void search(string find_name)
{
    int i;
    bool flag=false;
    for(i=0;i

根据姓名查找学生的学号_第1张图片

你可能感兴趣的:(根据姓名查找学生的学号)