📄 student.cpp
字号:
#include"student.h"
void student::set()
{
cout<<"input the number :";
cin>>num;
cout<<"input the name: ";
cin>>name;
cout<<"input the sex (f/m): ";
cin>>sex;
}
void student::disply()
{
cout<<"the number is : "<<num;
cout<<"the name is : "<<name;
cout<<"the sex is : "<<sex;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -