수다닷컴

  • 해외여행
    • 괌
    • 태국
    • 유럽
    • 일본
    • 필리핀
    • 미국
    • 중국
    • 기타여행
    • 싱가폴
  • 건강
    • 다이어트
    • 당뇨
    • 헬스
    • 건강음식
    • 건강기타
  • 컴퓨터
    • 프로그램 개발일반
    • C언어
    • 비주얼베이직
  • 결혼생활
    • 출산/육아
    • 결혼준비
    • 엄마이야기방
  • 일상생활
    • 면접
    • 취업
    • 진로선택
  • 교육
    • 교육일반
    • 아이교육
    • 토익
    • 해외연수
    • 영어
  • 취미생활
    • 음악
    • 자전거
    • 수영
    • 바이크
    • 축구
  • 기타
    • 강아지
    • 제주도여행
    • 국내여행
    • 기타일상
    • 애플
    • 휴대폰관련
  • 프로그램 개발일반
  • C언어
  • 비주얼베이직

오류좀 잡아주세용

꽃

2023.04.01

인력관리프로그램인데 에러가 안잡히네요
#pragma once#include string
using namespace std;
class CPerson{private: string name; string tel; string address; string id;public: CPerson(void); ~CPerson(void);
virtual void SearchName(string name); virtual void SearchDept(string dept); virtual void SearchClub(string club); virtual void DeleteName(string name); virtual void ShowFaculty(); virtual void ShowGraduate(); virtual void ShowStaff(); virtual void ShowUnderGraduate(); virtual string getTutor(); virtual string getDept(); virtual string getWork(); virtual string getOffice(); virtual string getClub(); virtual string getStudy(); virtual string getGrade();
string getId(); string getName(); string getTel(); string getAddress(); void setId(string Id); void setName(string name); void setTel(string tel); void setAddress(string address);};
------------------------------------------------------#include CPerson.h

CPerson::CPerson(void){}

CPerson::~CPerson(void){}
void CPerson::DeleteName(string name){
}
void CPerson::SearchName(string name){
}
void CPerson::SearchDept(string dept){
}
void CPerson::SearchClub(string club){
}
string CPerson::getId(){ return id;}
void CPerson::setId(string id){ this-id = id;}
string CPerson::getName(){ return name;}
string CPerson::getTel(){ return tel;}
string CPerson::getAddress(){ return address;}
void CPerson::setName(string name){ this-name = name;}
void CPerson::setTel(string tel){ this-tel = tel;}
void CPerson::setAddress(string address){ this-address = address;}
void CPerson::ShowFaculty(){}
void CPerson::ShowGraduate(){}
void CPerson::ShowStaff(){}
void CPerson::ShowUnderGraduate(){ }==========================================================#pragma once#include CPerson.h#include iostream#include string
using namespace std;
class CFaculty : public CPerson{private: string dept; string study; string office;public: CFaculty(string id, string dept, string study, string office, string name, string tel, string address); ~CFaculty(void);
string getDept(); string getStudy(); string getOffice(); void setDept(string dept); void setStudy(string study); void setOffice(string office); string getTutor(); string getWork(); string getClub(); string getGrade();

void ShowFaculty(); void ShowGraduate(); void ShowStaff(); void ShowUnderGraduate(); void DeleteName(string name); void SearchName(string name); void SearchDept(string dept);};
=============================================================
#include CFaculty.h#include iostream#include string

CFaculty::CFaculty(string id, string dept, string study, string office, string name, string tel, string address){ this-sis-setName(name); this-setTel(tel); this-setAddress(address); this-setId(id); this-dept = dept; this-study = study; this-office = office;}

CFaculty::~CFaculty(void){}
string CFaculty::getGrade(){ return ;}
string CFaculty::getTutor(){ return ;}
string CFaculty::getWork(){ return ;}
string CFaculty::getClub(){ return ;}
string CFaculty::getDept(){ return dept;}
string CFaculty::getStudy(){ return study;}
string CFaculty::getOffice(){ return office;}
void CFaculty::setDept(string dept){ this-dept = dept;}
void CFaculty::setStudy(string study){ this-study = study;}
void CFaculty::setOffice(string office){ this-office = office;}
void CFaculty::ShowFaculty(){ if(this-getId().substr(0,1) == F) coutthis-getId(),this-getDept(),this-getStudy(),this-getOffice(),this-getName(),this-getTel(),this-getAddress()endl;}void CFaculty::ShowGraduate(){}
void CFaculty::ShowStaff(){}
void CFaculty::ShowUnderGraduate(){}

void CFaculty::DeleteName(string name){ if(this-getName() == name) { cout삭제endl; coutthis-getId(),this-getDept(),this-getStudy(),this-getOffice(),this-getName(),this-getTel(),this-getAddress()endl;
}}
void CFaculty::SearchName(string name){ if(this-getName() == name) { coutthis-getId(),this-getDept(),this-getStudy(),this-getOffice(),this-getName(),this-getTel(),this-getAddress()endl; }}
void CFaculty::SearchDept(string dept){ if(this-getDept() == dept) { coutthis-getId(),this-getDept(),this-getStudy(),this-getOffice(),this-getName(),this-getTel(),this-getAddress()endl; }}================================================================#pragma once#include CStudent.h#include iostream#include string
using namespace std;
class CGraduate : public CStudent{private: int grade; string dept; string tutor; string study; string office;public: CGraduate(string sid, string grade, string dept, string tutor, string study, string office, string name, string tel, string address); ~CGraduate(void);
string getStudy(); string getOffice(); void setStudy(string study); void setOffice(string office); string getClub();
string getWork();
void ShowFaculty(); void ShowGraduate(); void ShowStaff(); void ShowUnderGraduate(); void SearchName(string name); void SearchDept(string dept);

};
=============================================================
#include CGraduate.h

CGraduate::CGraduate(string sid, string grade, string dept, string tutor, string study, string office, string name, string tel, string address){ this-setName(name); this-setTel(tel); this-setAddress(address); this-setId(sid); this-setGrade(grade); this-setDept(dept); this-setTutor(tutor); this-study = study; this-office = office;
}
CGraduate::~CGraduate(void){}
string CGraduate::getWork(){ return ;}
string CGraduate::getClub(){ return ;}
string CGraduate::getStudy(){ return study;}
string CGraduate::getOffice(){ return office;}
void CGraduate::setStudy(string study){ this-study = study;}
void CGraduate::setOffice(string office){ this-office = office;}
void CGraduate::ShowFaculty(){}
void CGraduate::ShowGraduate(){ if(this-getId().substr(0,1) == G) coutthis-getId(),this-getGrade(),this-getDept(),this-getTutor(),this-getStudy(),this-getOffice(),this-getName(),this-getTel(),this-getAddress()endl;}
void CGraduate::ShowStaff(){}
void CGraduate::ShowUnderGraduate(){}
void CGraduate::SearchName(string name){ if(this-getName() == name) coutthis-getId(),this-getGrade(),this-getDept(),this-getTutor(),this-getStudy(),this-getOffice(),this-getName(),this-getTel(),this-getAddress()ent;endl;}
void CGraduate::SearchDept(string dept){ if(this-getDept() == dept) coutthis-getId(),this-getGrade(),this-getDept(),this-getTutor(),this-getStudy(),this-getOffice(),this-getName(),this-getTel(),this-getAddress()endl;
}=================================================================
#pragma once#include CPerson.h#include iostream#include string
using namespace std;
class CStaff : public CPerson{private: string dept; string work; string office;public: CStaff(string id, string dept, string work, string office, string name, string tel, string address); ~CStaff(void);
string getDept(); string getWork(); string getOffice(); void setDept(string dept); void setWork(string work); void setOffice(string office); string getTutor(); string getClub(); string getStudy(); string getGrade();
void ShowFaculty(); void ShowGraduate(); void ShowStaff(); void ShowUnderGraduate(); void DeleteName(string name); void SearchName(string name); void SearchDept(string dept);
};
=========================================================#include CStaff.h#include iostream#include string

CStaff::CStaff(string id, string dept, string work, string office, string name, string tel, string address){ this-setName(name); this-setTel(tel); this-setAddress(address); this-setId(id); this-dept = dept; this-work = work; this-office = office;
}

CStaff::~CStaff(void){}
string CStaff::getGrade(){ return ;}
string CStaff::getClub(){ return ;}
string CStaff::getStudy(){ return ;}

string CStaff::getTutor(){ return ;}
string CStaff::getDept(){ return dept;}
string CStaff::getWork(){ return work;}
string CStaff::getOffice(){ return office;}
void CStaff::setDept(string dept){ this-dept = dept;}
void CStaff::setWork(string work){ this-work = work;}
void CStaff::setOffice(string office){ this-office = office;}
void CStaff::ShowFaculty(){}
void CStaff::ShowGraduate(){}
void CStaff::ShowStaff(){ if(this-getId().substr(0,1) == S) coutthis-getId(),this-getDept(),this-getWork(),this-getOffice(),this-getName(),this-getTel(),this-getAddress()endl;}
void CStaff::ShowUnderGraduate(){}
void CStaff::DeleteName(string name){ if(this-getName() == name) {
}}
void CStaff::SearchName(string name){ if(this-getName() == name) coutthis-getId(),this-getDept(),this-getWork(),this-getOffice(),this-getName(),this-getTel(),this-getAddress()endl;}
void CStaff::SearchDept(string dept){ if(this-getDept() == dept) coutthis-getId(),this-getDept(),this-getWork(),this-getOffice(),this-getName(),this-getTel(),this-getAddress()endl;
}
=========================================================#pragma once#include iostream#include CPerson.h
using namespace std;
class CStudent : public CPerson{private: string grade; string dept; string tutor;public: CStudent(void); ~CStudent(void);
string getGrade(); string getDept(); string getTutor(); void setGrade(string grade); void setDept(string dept); void setTutor(string tutor); void ShowFaculty(); void ShowGraduate(); void ShowStaff(); void ShowUnderGraduate(); };
=======================================================
#include CStudent.h

CStudent::CStudent(void){}

CStudent::~CStudent(void){}
string CStudent::getGrade(){ return grade;}
string CStudent::getDept(){ return dept;}
string CStudent::getTutor(){ return tutor;}
void CStudent::setGrade(string grade){ this-grade = grade;}
void CStudent::setDept(string dept){ this-dept = dept;}
void CStudent::setTutor(string tutor){ this-tutor = tutor;}
void CStudent::ShowFaculty(){}
void CStudent::ShowGraduate(){}
void CStudent::ShowStaff(){}
void CStudent::ShowUnderGraduate(){ }=====================================================#pragma once#include CStudent.h#include iostream#include string
using namespace std;
class CUnderGraduate : public CStudent{private: int grade; string dept; string tutor; string club;public: CUnderGraduate(string sid, string grade, string dept, string tutor, string club, string name, string tel, string address); ~CUnderGraduate(void);
void SearchClub(string club);
string getClub(); void setClub(string club); string getWork(); string getOffice(); string getStudy();
void ShowFaculty(); void ShowGraduate(); void ShowStaff(); void ShowUnderGraduate(); void DeleteName(string name); void SearchName(string name); void SearchDept(string dept);};====================================================#include CUnderGraduate.h

CUnderGraduate::CUnderGraduate(string sid, string grade, string dept, string tutor, string club, string name, string tel, string address){ this-setName(name); this-setTel(tel); this-setAddress(address); this-setId(sid); this-setGrade(grade); this-setDept(dept); this-setTutor(tutor); this-club = club;}

CUnderGraduate::~CUnderGraduate(void){}
string CUnderGraduate::getWork(){ return ;}
string CUnderGraduate::getOffice(){ return ;}
string CUnderGraduate::getStudy(){ return ;}
string CUnderGraduate::getClub(){ return club;}
void CUnderGraduate::setClub(string club){ this-club = club;}
void CUnderGraduate::ShowFaculty(){}
void CUnderGraduate::ShowGraduate(){}
void CUnderGraduate::ShowStaff(){}
void CUnderGraduate::ShowUnderGraduate(){ if(this-getId().substr(0,1) == U) coutthis-getId(),this-getGrade(),this-getDept(),this-getTutor(),this-getClub(),this-getName(),this-getTel(),this-getAddress()&lress()endl;}
void CUnderGraduate::DeleteName(string name){ if(this-getName() == name) {
}}
void CUnderGraduate::SearchName(string name){ if(this-getName() == name) coutthis-getId(),this-getGrade(),this-getDept(),this-getTutor(),this-getClub(),this-getName(),this-getTel(),this-getAddress()endl;}
void CUnderGraduate::SearchDept(string dept){ if(this-getDept() == dept) coutthis-getId(),this-getGrade(),this-getDept(),this-getTutor(),this-getClub(),this-getName(),this-getTel(),this-getAddress()endl;}
void CUnderGraduate::SearchClub(string club){ if(this-getClub() == club) coutthis-getId(),this-getGrade(),this-getDept(),this-getTutor(),this-getClub(),this-getName(),this-getTel(),this-getAddress()endl;}============================================================#pragma once#include iostream#include fstream#include string#include CFaculty.h#include CGraduate.h#include CPerson.h#include CStaff.h#include CStudent.h#include CUnderGraduate.h
using namespace std;
#define MAX 100
class iohandler{private: CPerson *p[MAX]; int count;public: iohandler(); ~iohandler(void);
int inFile(CPerson * _p[]); void outFile(CPerson * p[], int count, string val1, string val2, string val3, string val4, string val5, string val6, string val7, string val8 = , string val9 = );
CPerson *getPerson();};===============================================================
#include iohandler.h
iohandler::iohandler(void){}
iohandler::~iohandler(void){}
CPerson * iohandler::getPerson(){ return p[MAX];}
int iohandler::inFile(CPerson * p[]){ char str[100]; string menu; string val1, val2, val3, val4, val5, val6, val7, val8, val9; ifstream in; int count =0;
in.open(data.txt);
if(!in) { cout파일을 열 수 없음endl; return 0; }
while(!in.eof()) { getline(in,menu); if(menu == 교수) { while(1) { in.getline(str,100);
val1 = strtok(str,,);
if(val1==직원) { menu = val1; break; }
val2 = strtok(NULL, ,); val3 = strtok(NULL, ,); val4 = strtok(NULL, ,); val5 = strtok(NULL, ,); val6 = strtok(NULL, ,); val7 = strtok(NULL, ,);
p[count++] = new CFaculty(val1,val2,val3,val4,val5,val6,val7); } }
if(menu == 직원) { while(1) { in.getline(str,100); val1 = strtok(str,,);
if(val1==대학생) { menu = val1; break; }
val2 = strtok(NULL, ,); val3 = strtok(NULL, ,); val4 = strtok(NULL, ,); val5 = strtok(NULL, ,); val6 = strtok(NULL, ,); val7 = strtok(NULL, ,);
p[count++] = new CStaff(val1, val2, val3, val4, val5, val6, val7); } }
if(menu == 대학생) { while(1) { in.getline(str,100); val1 = strtok(str,,);
if(val1==대학원생) { menu = val1; break; }
val2 = strtok(NULL, ,); val3 = strtok(NULL, ,); val4 = strtok(NULL, ,); val5 = strtok(NULL, ,); val6 = strtok(NULL, ,); val7 = strtok(NULL, ,); val8 = strtok(NULL, ,);
p[count++] = new CUnderGraduate(val1,val2,val3,val4,val5,val6,val7,val8); } }
if(menu == 대학원생) { while(!in.eof()) { in.getline(str,100); val1 = strtok(str,,); val2 = strtok(NULL, ,); val3 = strtok(NULL, ,); val4 = strtok(NULL, ,); val5 = strtok(NULL, ,); val6 = strtok(NULL, ,); val7 = strtok(NULL, ,); val8 = strtok(NULL, ,); val9 = strtok(NULL, ,);
p[count++] = new CGraduate(val1,val2,val3,val4,val5,val6,val7,val8,val9); } } }
in.close();
return count;}
void iohandler::outFile(CPerson * p[], int count, string val1, string val2, string val3, string val4, string val5, string val6, string val7, string val8, string val9){ ofstream out; out.open(data.txt,ios::trunc); out교수endl; for(int i=0;icount;i++) { if(p[i]-getId().substr(0,1)==F) { outp[i]-getId(),p[i]-getDept(),p[i]-getStudy(),p[i]-getOffice(),p[i]-getName(),p[i]-getTel(),p[i]-getAddress()endl; } }
out직원endl; for(int i=0;icount;i++) { if(p[i]-getId().substr(0,1)==S) { outp[i]-getId(),p[i]-getDept(),p[i]-getWork(),p[i]-getOffice(),p[i]-getName(),p[i]-getTel(),p[i]-getAddress()endl; } }
out대학생endl; for(int i=0;icount;i++) { if(p[i]-getId().substr(0,1)==U) { outp[i]-getId(),p[i]-getGrade(),p[i]-getDept(),p[i]-getTutor(),p[i]-getClub(),p[i]-getName(),p[i]-getTel(),p[i]-getAddress()endl; } }
out대학원생endl; for(int i=0;icount;i++) { if(p[i]-getId().substr(0,1)==G) { outp[i]-getId(),p[i]-getGrade(),p[i]-getDept(),p[i]-getTutor(),p[i]-getStudy(),p[i]-getOffice(),p[i]-getName(),p[i]-getTel(),p[i]-getAddress()endl; } } cout\b; out.close();}
=========================================================
#include iostream#include CPerson.h#include CFaculty.h#include CGraduate.h#include CStaff.h#include CUnderGraduate.h#include iohandler.h#include string
using namespace std;
#define MAX 100
int main(){ iohandler io; CPerson * p[MAX]; int sel, menu; int n; string temp1, temp; string val1,val2,val3,val4,val5,val6,val7,val8,val9;
int count = io.inFile(p);
while(1) { cout1.인력입력endl2.인력출력endl3.인력삭제endl4.인력검색endl5.종료endl; cinsel;
switch(sel) { case 1: cout1.1 교수 입력endl; cout1.2 직원 입력endl; cout1.3 대학생 입력endl; cout1.4 대학원생 입력endl; cout입력 대상을 고르시오 : ; cinmenu; switch(menu) { case 1: cout교수 정보를 입력하시오.(사번, 학과, 전공, 연구실, 이름, 연락처, 주소 순으로 입력)endl; cinval1val2val3val4val5val6val7; p[count] = new CFaculty(val1, val2, val3, val4, val5, val6, val7); io.outFile(p, count, val1, val2, val3, val4, val5, val6, val7); count++; break; case 2: cout직원 정보를 입력하시오.(사번, 학과, 업무, 사무실, 이름, 연락처, 주소 순으로 입력)endl; cinval1val2val3val4val5val6val7; p[count] = new CStaff(val1, val2, val3, val4, val5, val6, val7); io.outFile(p, count, val1, val2, val3, val4, val5, val6, val7); count++; break; case 3: cout대학생 정보를 입력하시오.(학번, 학년, 학과, 지도교수, 동아리, 이름, 연락처, 주소 순으로 입력)endl; cinval1val2val3val4val5val6val7val8; n=0; for(int i=0;icount;i++) { if(p[i]-getName() == val4) n++; } if(n==0) { cout지도교수가 없음endl; break; } p[count] = new CUnderGraduate(val1, val2, val3, val4, val5, val6, val7, val8); io.outFile(p, count, val1, val2, val3, val4, val5, val6, val7, val8); count++; break; case 4: cout대학원생 정보를 입력하시오.(학번, 학년, 학과, 지도교수, 전공, 연구실, 이름, 연락처, 주소 순으로 입력)endl; cinval1val2val3val4val5val6val7val8val9; n=0; for(int i=0;icount;i++) { if(p[i]-getName() == val4) n++; } if(n==0) { cout지도교수가 없음endl; break; } p[count] = new CGraduate(val1, val2, val3, val4, val5, val6, val7, val8, val9); io.outFile(p, count, val1, val2, val3, val4, val5, val6, val7, val8, val9); count++; break; default: cout잘못된 입력입니다.endl; break; }
break; case 2: cout2.1 모두 출력endl; cout2.2 교수 출력endl; cout2.3 직원 출력endl; cout2.4 대학생 출력endl; cout2.5 대학원생 출력endl; cinmenu;
switch(menu) { case 1: cout모든 정보를 출력합니다.endl; for(int i=0;icount;i++) { p[i]-ShowFaculty(); p[i]-ShowGraduate(); p[i]-ShowStaff(); p[i]-ShowUnderGraduate(); }
break; case 2: cout교수 정보를 출력합니다.endl; for(int i=0;icount;i++) { p[i]-ShowFaculty(); }
break; case 3: cout직원 정보를 출력합니다.endl; for(int i=0;icount;i++) { p[i]-ShowStaff(); }
break; case 4: cout대학생 정보를 출력합니다.endl; for(int i=0;icount;i++) { p[i]-ShowUnderGraduate(); }
break; case 5: cout대학원생 정보를 출력합니다.endl; for(int i=0;icount;i++) { p[i]-ShowGraduate(); }
break; default: break; }
break; case 3: cout3.1 교수 삭제endl; cout3.2 직원 삭제endl; cout3.3 대학생 삭제endl; cout3.4 대학원생 삭제endl; cinmenu;
switch(menu) { case 1: cout삭제할 교수 이름을 입력하시오.; cintemp1; n=0; for(int i=0;icount;i++) { if(p[i]-getTutor() == temp1) n++; }
if(n0) { cout지도학생이 있음endl; break; }
for(int i=0;icount;i++) { if(p[i]-getName() == temp1) { p[i]-~CPerson(); for(int j=i+1;jcount;j++) { p[j] = p[j-1]; } } } count--; io.outFile(p, count, val1, val2, val3, val4, val5, val6, val7); break; case 2: cout삭제할 직원 이름을 입력하시오.; cintemp1; for(int i=0;icount;i++) { if(p[i]-getName() == temp1) { p[i]-~CPerson(); for(int j=i+1;jcount;j++) { p[j] = p[j-1]; } } } count--; io.outFile(p, count, val1, val2, val3, val4, val5, val6, val7); break; case 3: cout삭제할 대학생 이름을 입력하시오.; cintemp1; for(int i=0;icount;i++) { if(p[i]-getName() == temp1) { p[i]-~CPerson(); for(int j=i+1;jcount;j++) { p[j] = p[j-1]; } } } count--; io.outFile(p, count, val1, val2, val3, val4, val5, val6, val7); break; case 4: cout삭제할 대학원생 이름을 입력하시오.; cintemp1; for(int i=0;icount;i++) { if(p[i]-getName() == temp1) { p[i]-~CPerson(); for(int j=i+1;jcount;j++) { p[j] = p[j-1]; } } } count--; io.outFile(p, count, val1, val2, val3, val4, val5, val6, val7); break; default: cout잘못된 입력입니다.; break; }
break; case 4: cout4.1 이름 검색endl; cout4.2 학과 검색endl; cout4.3 동아리 검색endl;l; cinmenu;
switch(menu) { case 1: cout검색할 이름을 입력하시오. : ; cintemp1; for(int i=0;icount;i++) { p[i]-SearchName(temp1); } break; case 2: cout검색할 학과명을 입력하시오. : ; cintemp1; for(int i=0;icount;i++) { p[i]-SearchDept(temp1); } break; case 3: cout검색할 동아리를 입력하시오. : ; cintemp1; for(int i=0;icount;i++) { p[i]-SearchClub(temp1); } break; default: break; }
break; case 5: cout프로그램을 종료합니다.endl; exit(1); break; default: cout잘못된 입력endl; exit(1); break; } }
for(int i=0;icount;i++) delete p[i];
return 0;}

신청하기





COMMENT

댓글을 입력해주세요. 비속어와 욕설은 삼가해주세요.

번호 제 목 글쓴이 날짜
2694611 Flash Lite 2.1에서 BitmapData와 Matrix 지원안하나요? (3) 이플 2025-05-12
2694582 IE & 파이어폭스 (2) 흙이랑 2025-05-12
2694553 무비클립안의 duplicate 발동이 안돼네요; 딥보라 2025-05-12
2694523 자바 애플릿 질문좀 ^^ (6) 동이 2025-05-12
2694494 [질문] JAVA 또는 C++ 로 프로그램 개발시.. 레지스터리 등록 관련 의문점? (3) 우람늘 2025-05-11
2694469 익스6에서 css버그 나오는것 해결방법좀요 !!!! (6) 원술 2025-05-11
2694442 로컬에선 잘 나오는데 운영에 반영하면 이상하게 나와요. (8) 목화 2025-05-11
2694412 [질문] 이미지 로딩후 사이즈 조절할때 (1) 아담 2025-05-11
2694391 설치형 블로그 쓰시는 분들 어떤거 쓰세요?? (7) AngelsTears 2025-05-10
2694362 Microsoft SQL Server에서 서버만드는법 어둠 2025-05-10
2694333 for문으로 돌린 이름의 제어 (4) 레이 2025-05-10
2694308 이미지 css 도와주세요 ㅠㅠ (2) 애기 2025-05-10
2694223 [급질문]스크롤스파이의 offset값 진나 2025-05-09
2694195 li에 이미지 넣고 세로로 메뉴 구성하는 경우 (1) 예님 2025-05-09
2694167 canvas 질문요. (4) 찬늘봄 2025-05-08
2694136 왜 이렇게 나오는지 이해가 잘 가지 않네요. 부탁드리겠습니다... (2) 세련 2025-05-08
2694111 div , css 공부하고있는데요 잘모르겠어요.. 도와주세요 ㅠ_ㅠ (10) 모람 2025-05-08
2694035 작업관리자 창에.. CPU사용 현황처럼 만들고 싶습니다. (1) 다올 2025-05-07
2694004 Linux에서 java사용 (2) 한빛 2025-05-07
2693978 CS5.5 베타 버젼이라도 다운받을 수 있는 사이트 아세요? (4) 콩순 2025-05-07
<<  이전  1 2 3 4 5 6 7 8 9 10  다음  >>

수다닷컴 | 여러분과 함께하는 수다토크 커뮤니티 수다닷컴에 오신것을 환영합니다.
사업자등록번호 : 117-07-92748 상호 : 진달래여행사 대표자 : 명현재 서울시 강서구 방화동 890번지 푸르지오 107동 306호
copyright 2011 게시글 삭제 및 기타 문의 : clairacademy@naver.com