#include // for cin and coutclass student{public: //必须是公开的才可以从外部直接访问 char name[20];};void main(){ student a; cin>>a.name; cout<}