├── .gitattributes ├── .gitignore ├── README.md ├── 我是学生管理系统,叫我帅气 ├── Debug │ ├── Lesson.txt │ ├── Student.txt │ ├── 我是学生管理系统,叫我帅气.exe │ ├── 我是学生管理系统,叫我帅气.ilk │ └── 我是学生管理系统,叫我帅气.pdb ├── 我是学生管理系统,叫我帅气.sln ├── 我是学生管理系统,叫我帅气.v11.suo └── 我是学生管理系统,叫我帅气 │ ├── Debug │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── cl.command.1.tlog │ ├── link-cvtres.read.1.tlog │ ├── link-cvtres.write.1.tlog │ ├── link-rc.read.1.tlog │ ├── link-rc.write.1.tlog │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ ├── link.write.1.tlog │ ├── vc110.idb │ ├── vc110.pdb │ ├── 我是学生管理系统,叫我帅气.lastbuildstate │ ├── 我是学生管理系统,叫我帅气.log │ └── 还不是傻吊.obj │ ├── Lesson.txt │ ├── Student.txt │ ├── 我是学生管理系统,叫我帅气.vcxproj │ ├── 我是学生管理系统,叫我帅气.vcxproj.filters │ └── 还不是傻吊.cpp └── 源码.cpp /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | *.sln merge=union 7 | *.csproj merge=union 8 | *.vbproj merge=union 9 | *.fsproj merge=union 10 | *.dbproj merge=union 11 | 12 | # Standard to msysgit 13 | *.doc diff=astextplain 14 | *.DOC diff=astextplain 15 | *.docx diff=astextplain 16 | *.DOCX diff=astextplain 17 | *.dot diff=astextplain 18 | *.DOT diff=astextplain 19 | *.pdf diff=astextplain 20 | *.PDF diff=astextplain 21 | *.rtf diff=astextplain 22 | *.RTF diff=astextplain 23 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Windows image file caches 2 | Thumbs.db 3 | ehthumbs.db 4 | 5 | # Folder config file 6 | Desktop.ini 7 | 8 | # Recycle Bin used on file shares 9 | $RECYCLE.BIN/ 10 | 11 | # Windows Installer files 12 | *.cab 13 | *.msi 14 | *.msm 15 | *.msp 16 | 17 | # ========================= 18 | # Operating System Files 19 | # ========================= 20 | 21 | # OSX 22 | # ========================= 23 | 24 | .DS_Store 25 | .AppleDouble 26 | .LSOverride 27 | 28 | # Icon must end with two \r 29 | Icon 30 | 31 | # Thumbnails 32 | ._* 33 | 34 | # Files that might appear on external disk 35 | .Spotlight-V100 36 | .Trashes 37 | 38 | # Directories potentially created on remote AFP share 39 | .AppleDB 40 | .AppleDesktop 41 | Network Trash Folder 42 | Temporary Items 43 | .apdisk 44 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | StudentManageSystem 2 | =================== 3 | 4 | 学生成绩管理系统 5 | 6 | 开头语 7 | 8 | 这是我在大二的时间段编写过的一个对于当时的我比较大的程序,当时知道的不是很多想法也单纯,但是这个是我在那个时期所表现的最好的作品,上传的目的: 9 | 10 | 一、是为了为了让自己不忘初心。 11 | 12 | 二、给广大的大学生参考 13 | -------------------------------------------------------------------------------- /我是学生管理系统,叫我帅气/Debug/Lesson.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zuixie/StudentManageSystem/dfed3af97e7b6f8ece068ed4dab0e5143bbdaffb/我是学生管理系统,叫我帅气/Debug/Lesson.txt -------------------------------------------------------------------------------- /我是学生管理系统,叫我帅气/Debug/Student.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zuixie/StudentManageSystem/dfed3af97e7b6f8ece068ed4dab0e5143bbdaffb/我是学生管理系统,叫我帅气/Debug/Student.txt -------------------------------------------------------------------------------- /我是学生管理系统,叫我帅气/Debug/我是学生管理系统,叫我帅气.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zuixie/StudentManageSystem/dfed3af97e7b6f8ece068ed4dab0e5143bbdaffb/我是学生管理系统,叫我帅气/Debug/我是学生管理系统,叫我帅气.exe -------------------------------------------------------------------------------- /我是学生管理系统,叫我帅气/Debug/我是学生管理系统,叫我帅气.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zuixie/StudentManageSystem/dfed3af97e7b6f8ece068ed4dab0e5143bbdaffb/我是学生管理系统,叫我帅气/Debug/我是学生管理系统,叫我帅气.ilk -------------------------------------------------------------------------------- /我是学生管理系统,叫我帅气/Debug/我是学生管理系统,叫我帅气.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zuixie/StudentManageSystem/dfed3af97e7b6f8ece068ed4dab0e5143bbdaffb/我是学生管理系统,叫我帅气/Debug/我是学生管理系统,叫我帅气.pdb -------------------------------------------------------------------------------- /我是学生管理系统,叫我帅气/我是学生管理系统,叫我帅气.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 2012 4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "我是学生管理系统,叫我帅气", "我是学生管理系统,叫我帅气\我是学生管理系统,叫我帅气.vcxproj", "{9FECEB95-BC88-4F70-8145-6BE82634482C}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Win32 = Debug|Win32 9 | Release|Win32 = Release|Win32 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {9FECEB95-BC88-4F70-8145-6BE82634482C}.Debug|Win32.ActiveCfg = Debug|Win32 13 | {9FECEB95-BC88-4F70-8145-6BE82634482C}.Debug|Win32.Build.0 = Debug|Win32 14 | {9FECEB95-BC88-4F70-8145-6BE82634482C}.Release|Win32.ActiveCfg = Release|Win32 15 | {9FECEB95-BC88-4F70-8145-6BE82634482C}.Release|Win32.Build.0 = Release|Win32 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /我是学生管理系统,叫我帅气/我是学生管理系统,叫我帅气.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zuixie/StudentManageSystem/dfed3af97e7b6f8ece068ed4dab0e5143bbdaffb/我是学生管理系统,叫我帅气/我是学生管理系统,叫我帅气.v11.suo -------------------------------------------------------------------------------- /我是学生管理系统,叫我帅气/我是学生管理系统,叫我帅气/Debug/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zuixie/StudentManageSystem/dfed3af97e7b6f8ece068ed4dab0e5143bbdaffb/我是学生管理系统,叫我帅气/我是学生管理系统,叫我帅气/Debug/CL.read.1.tlog -------------------------------------------------------------------------------- /我是学生管理系统,叫我帅气/我是学生管理系统,叫我帅气/Debug/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zuixie/StudentManageSystem/dfed3af97e7b6f8ece068ed4dab0e5143bbdaffb/我是学生管理系统,叫我帅气/我是学生管理系统,叫我帅气/Debug/CL.write.1.tlog -------------------------------------------------------------------------------- /我是学生管理系统,叫我帅气/我是学生管理系统,叫我帅气/Debug/cl.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zuixie/StudentManageSystem/dfed3af97e7b6f8ece068ed4dab0e5143bbdaffb/我是学生管理系统,叫我帅气/我是学生管理系统,叫我帅气/Debug/cl.command.1.tlog -------------------------------------------------------------------------------- /我是学生管理系统,叫我帅气/我是学生管理系统,叫我帅气/Debug/link-cvtres.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zuixie/StudentManageSystem/dfed3af97e7b6f8ece068ed4dab0e5143bbdaffb/我是学生管理系统,叫我帅气/我是学生管理系统,叫我帅气/Debug/link-cvtres.read.1.tlog -------------------------------------------------------------------------------- /我是学生管理系统,叫我帅气/我是学生管理系统,叫我帅气/Debug/link-cvtres.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zuixie/StudentManageSystem/dfed3af97e7b6f8ece068ed4dab0e5143bbdaffb/我是学生管理系统,叫我帅气/我是学生管理系统,叫我帅气/Debug/link-cvtres.write.1.tlog -------------------------------------------------------------------------------- /我是学生管理系统,叫我帅气/我是学生管理系统,叫我帅气/Debug/link-rc.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zuixie/StudentManageSystem/dfed3af97e7b6f8ece068ed4dab0e5143bbdaffb/我是学生管理系统,叫我帅气/我是学生管理系统,叫我帅气/Debug/link-rc.read.1.tlog -------------------------------------------------------------------------------- /我是学生管理系统,叫我帅气/我是学生管理系统,叫我帅气/Debug/link-rc.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zuixie/StudentManageSystem/dfed3af97e7b6f8ece068ed4dab0e5143bbdaffb/我是学生管理系统,叫我帅气/我是学生管理系统,叫我帅气/Debug/link-rc.write.1.tlog -------------------------------------------------------------------------------- /我是学生管理系统,叫我帅气/我是学生管理系统,叫我帅气/Debug/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zuixie/StudentManageSystem/dfed3af97e7b6f8ece068ed4dab0e5143bbdaffb/我是学生管理系统,叫我帅气/我是学生管理系统,叫我帅气/Debug/link.command.1.tlog -------------------------------------------------------------------------------- /我是学生管理系统,叫我帅气/我是学生管理系统,叫我帅气/Debug/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zuixie/StudentManageSystem/dfed3af97e7b6f8ece068ed4dab0e5143bbdaffb/我是学生管理系统,叫我帅气/我是学生管理系统,叫我帅气/Debug/link.read.1.tlog -------------------------------------------------------------------------------- /我是学生管理系统,叫我帅气/我是学生管理系统,叫我帅气/Debug/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zuixie/StudentManageSystem/dfed3af97e7b6f8ece068ed4dab0e5143bbdaffb/我是学生管理系统,叫我帅气/我是学生管理系统,叫我帅气/Debug/link.write.1.tlog -------------------------------------------------------------------------------- /我是学生管理系统,叫我帅气/我是学生管理系统,叫我帅气/Debug/vc110.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zuixie/StudentManageSystem/dfed3af97e7b6f8ece068ed4dab0e5143bbdaffb/我是学生管理系统,叫我帅气/我是学生管理系统,叫我帅气/Debug/vc110.idb -------------------------------------------------------------------------------- /我是学生管理系统,叫我帅气/我是学生管理系统,叫我帅气/Debug/vc110.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zuixie/StudentManageSystem/dfed3af97e7b6f8ece068ed4dab0e5143bbdaffb/我是学生管理系统,叫我帅气/我是学生管理系统,叫我帅气/Debug/vc110.pdb -------------------------------------------------------------------------------- /我是学生管理系统,叫我帅气/我是学生管理系统,叫我帅气/Debug/我是学生管理系统,叫我帅气.lastbuildstate: -------------------------------------------------------------------------------- 1 | #v4.0:v110:false 2 | Debug|Win32|D:\VS\我是学生管理系统,叫我帅气\| 3 | -------------------------------------------------------------------------------- /我是学生管理系统,叫我帅气/我是学生管理系统,叫我帅气/Debug/我是学生管理系统,叫我帅气.log: -------------------------------------------------------------------------------- 1 | 生成启动时间为 2013/5/26 星期日 20:59:31。 2 | 1>项目“D:\VS\我是学生管理系统,叫我帅气\我是学生管理系统,叫我帅气\我是学生管理系统,叫我帅气.vcxproj”在节点 2 上(Build 个目标)。 3 | 1>ClCompile: 4 | C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\bin\CL.exe /c /ZI /nologo /W3 /WX- /Od /Oy- /D WIN32 /D _DEBUG /D _CONSOLE /D _UNICODE /D UNICODE /Gm /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Fo"Debug\\" /Fd"Debug\vc110.pdb" /Gd /TP /analyze- /errorReport:prompt "还不是傻吊.cpp" 5 | 还不是傻吊.cpp 6 | Link: 7 | C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\bin\link.exe /ERRORREPORT:PROMPT /OUT:"D:\VS\我是学生管理系统,叫我帅气\Debug\我是学生管理系统,叫我帅气.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"D:\VS\我是学生管理系统,叫我帅气\Debug\我是学生管理系统,叫我帅气.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"D:\VS\我是学生管理系统,叫我帅气\Debug\我是学生管理系统,叫我帅气.lib" /MACHINE:X86 "Debug\还不是傻吊.obj" 8 | 我是学生管理系统,叫我帅气.vcxproj -> D:\VS\我是学生管理系统,叫我帅气\Debug\我是学生管理系统,叫我帅气.exe 9 | 1>已完成生成项目“D:\VS\我是学生管理系统,叫我帅气\我是学生管理系统,叫我帅气\我是学生管理系统,叫我帅气.vcxproj”(Build 个目标)的操作。 10 | 11 | 生成成功。 12 | 13 | 已用时间 00:00:01.32 14 | -------------------------------------------------------------------------------- /我是学生管理系统,叫我帅气/我是学生管理系统,叫我帅气/Debug/还不是傻吊.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zuixie/StudentManageSystem/dfed3af97e7b6f8ece068ed4dab0e5143bbdaffb/我是学生管理系统,叫我帅气/我是学生管理系统,叫我帅气/Debug/还不是傻吊.obj -------------------------------------------------------------------------------- /我是学生管理系统,叫我帅气/我是学生管理系统,叫我帅气/Lesson.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zuixie/StudentManageSystem/dfed3af97e7b6f8ece068ed4dab0e5143bbdaffb/我是学生管理系统,叫我帅气/我是学生管理系统,叫我帅气/Lesson.txt -------------------------------------------------------------------------------- /我是学生管理系统,叫我帅气/我是学生管理系统,叫我帅气/Student.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zuixie/StudentManageSystem/dfed3af97e7b6f8ece068ed4dab0e5143bbdaffb/我是学生管理系统,叫我帅气/我是学生管理系统,叫我帅气/Student.txt -------------------------------------------------------------------------------- /我是学生管理系统,叫我帅气/我是学生管理系统,叫我帅气/我是学生管理系统,叫我帅气.vcxproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | Win32 7 | 8 | 9 | Release 10 | Win32 11 | 12 | 13 | 14 | {9FECEB95-BC88-4F70-8145-6BE82634482C} 15 | Win32Proj 16 | 我是学生管理系统叫我帅气 17 | 18 | 19 | 20 | Application 21 | true 22 | v110 23 | Unicode 24 | 25 | 26 | Application 27 | false 28 | v110 29 | true 30 | Unicode 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | true 44 | 45 | 46 | false 47 | 48 | 49 | 50 | 51 | 52 | Level3 53 | Disabled 54 | WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) 55 | 56 | 57 | Console 58 | true 59 | 60 | 61 | 62 | 63 | Level3 64 | 65 | 66 | MaxSpeed 67 | true 68 | true 69 | WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) 70 | 71 | 72 | Console 73 | true 74 | true 75 | true 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | -------------------------------------------------------------------------------- /我是学生管理系统,叫我帅气/我是学生管理系统,叫我帅气/我是学生管理系统,叫我帅气.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | 18 | 19 | 源文件 20 | 21 | 22 | -------------------------------------------------------------------------------- /我是学生管理系统,叫我帅气/我是学生管理系统,叫我帅气/还不是傻吊.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zuixie/StudentManageSystem/dfed3af97e7b6f8ece068ed4dab0e5143bbdaffb/我是学生管理系统,叫我帅气/我是学生管理系统,叫我帅气/还不是傻吊.cpp -------------------------------------------------------------------------------- /源码.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zuixie/StudentManageSystem/dfed3af97e7b6f8ece068ed4dab0e5143bbdaffb/源码.cpp --------------------------------------------------------------------------------