도스창 글씨나 바탕색깔을 바꾸는법좀알려주세요
떠나간그녀
2023.04.18
지금#includeiostreamusing namespace std;
class student{ int age; int id; char name[50]; char object[50];
public: student(int _age, int _id, char *_name, char *_object) { age=_age; id=_id; strcpy(name, _name); strcpy(object, _object); }
void opendata(){ cout 이름 : name endl; cout 나이 : age endl; cout 학번 : id endl; cout 학과 : object endl;}};int main(){ student C(16, 20131102, Choi Eun Woo, math); student K(16, 20131102, Kim Hee Yeon, art);
C.opendata(); cout endl; K.opendata(); return 0;}
클래스 공부중인데.. 소스에 추가해야되면 어디다 추개해야되는지도 좀 알려주세요