资源简介


代码片段和文件信息

#include
#include  
using namespace std;

struct birthday
{
  int day;
  int month;
  int year;  

};

   struct classes{
   
    int yuwen;
    int shuxue;
    int yingyu;
    int wuli;
    int huaxue;
    int shengwu;
    int lishi;
    int dili;
    int zhengzhi;
   
    double yuwenmark;
    double shuxuemark;
    double yingyumark;
    double wulimark;
    double huaxuemark;
    double shengwumark;
    double lishimark;
    double dilimark;
    double zhengzhimark;
   
   }; 
    


struct sstudent//学生的基本信息
{
    char stuid[10];
    char name[12];
    struct birthday time;
    struct classes c;
char sex[5];

  sstudent(){} 
    void input();//输入学生信息 
    void output();//输出学生信息 
    
   void setclass();
   void

评论

共有 条评论