娜子 发表于 2013-6-19 20:30:02

帮我看看我写的代码吧

#include "stdafx.h"
#include <cstdlib>
#include "iostream"
#include "date.h"
#include "person.h"
#include "student.h"
#include "teacher.h"
#include "undergraduate.h"
#include "graduate.h"
#include "ta.h"
#include "undergraduateManager.h"
using namespace std;

int main(int argc, char *argv[])
{   int choiceN;
UndergraduateManager unMan;   

    cout<<"********************************************************"<<endl;
    cout<<"*|*|                                                |*|*"<<endl;   
    cout<<"*|*|            欢迎您使用学生管理系统            |*|*"<<endl;
    cout<<"*|*|                                                |*|*"<<endl;   
    cout<<"********************************************************"<<endl;
    do{
      cout << "<---------------------------------------------------->" << endl;                                                                  
      cout << " \n \t\t 1:本科生管理 ";
      cout << " \n \t\t 2:研究生管理";
      cout << " \n \t\t 3.助教博士生管理 ";
      cout << " \n \t\t 0:离开    ";
      cout << endl;      
      cout << "<---------------------------------------------------->" << endl;
      cout << "请选择:" << endl;
      cin >> choiceN;
      switch(choiceN)
      {
      case 1:
         unMan.dataManage();
         break;
      case 2:
          //
          break;
      case 3:
          //
          break;
      default:
          break;
      }
    }while(choiceN!=0);
    cout<<" **********************************************************"<<endl;
    cout<<"*|*|               感谢使用学生管理系统                  |*|*"<<endl;
    cout<<" **********************************************************\a"<<endl;

lsh華 发表于 2013-6-19 22:24:46

强烈支持楼主ing……
页: [1]
查看完整版本: 帮我看看我写的代码吧