C++实现简单的学生管理系统 //Student.cpp #include using namespace std; struct Stu { char no[10]; char name[16]; int math; int chi; double ave; }; class Student { public: Stu st; Student * next; public: Student(){} Student(Stu s) { st=s; next=NULL; st.ave=(st.math+st.c
2022-12-11 21:37:13 49KB cls getchar next
1
编程实现用getchar函数从键盘输入一个小写字母,并用putchar函数输出对应的大写字母。
2021-05-06 19:03:28 96B C语言