-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstruct.cpp
More file actions
48 lines (48 loc) · 1.38 KB
/
Copy pathstruct.cpp
File metadata and controls
48 lines (48 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//
// Created by Wen34 on 2026/4/2.
//
#include "struct.h"
#include "Input.h"
#include "Process.h"
#include "Output.h"
#include <iostream>
using namespace std;
//
// Tmarks::Tmarks()
// {
// cout << "\n请依次输入每位应聘者的信息:" << endl;
// cout << "(姓名 性别 年龄 学历 任科级干部年限 现工作单位 政策法律基础 语文 英语 计算机基础 口试)" << endl;
// cout << "姓名: ";
// cin >> name;
// // 输入姓名
// cout << "性别:(男:M 女:W) ";
// cin >> info.sex;
// // 输入性别
// cout << "年龄: ";
// cin >> info.age;
// // 输入年龄
// cout << "学历:(博士:B 硕士:M 本科:U 其他:O) ";
// cin >> info.schoolrecord;
// // 输入学历
// cout << "任科级干部年限: ";
// cin >> info.worklen;
// // 输入任科级干部年限
// cout << "现工作单位: ";
// cin >> info.wordsite;
// // 输入现工作单位
// cout << "政策法律基础: ";
// cin >> mark.pol;
// // 输入政策法律基础
// cout << "语文: ";
// cin >> mark.chn;
// // 输入语文
// cout << "英语: ";
// cin >> mark.eng;
// // 输入英语
// cout << "计算机基础: ";
// cin >> mark.com;
// // 输入计算机基础
// cout << "口试: ";
// // 输入口试
// cin >> mark.oral;
// }