#Mini SQL ##Typing Style ###Language C++
###Notice
- No global variable
- Design an complete oop model.
###variable name
- Don't use the variable without meaning such as "aaa" or "bb"
- Using i,j,k... to be a index-variable in a loop is legal
- To name any other functional variable using "_" style such as "student_name"
- all lowercase except the first letter of the class name
##TASK ###pre-work
- Design the oop model for your task
- Design all Api-function
###test-work
-
Write enough test data
-
Suppose others have finished their program, using the api function, and write these function as followed
int fuc_a(); int main() { fuc_a() } int fuc_a() { cout<<'in fuc_a'; }
###merge-work ...