C++ 사물함 관리 프로그램
닫기
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
해당 자료는 10페이지 까지만 미리보기를 제공합니다.
10페이지 이후부터 다운로드 후 확인할 수 있습니다.

소개글

C++ 사물함 관리 프로그램에 대한 보고서 자료입니다.

목차

C++
사물함
관리
도서관 자리

본문내용

#include
#include
#include "Member.h"
#include "Locker.h"

using namespace std;

Locker::Locker() {
studentID = new char[1];
studentID = NULL;

// LockerStatus \\ Status.txt ( 0 = 빈자리 )
for(int i=0; i exist[i] = 0;
}
// ID \\ Locker.txt ( 0 = 빈자리 )
lockerNumber = 0;
}


Locker::~Locker() {
delete []studentID;
}

void Locker::saveID(char* id) {
studentID = new char[strlen(id)+1];
strcpy(studentID, id);
}

void Locker::lockerStatus() {

// 사물함 현황 화면 설계
int i;
readStatus();

system("cls");

cout << "┌─01─┐┌─02─┐┌─03─┐┌─04─┐┌─05─┐"<< endl;
for(i=0; i<5; i++) {
if(exist[i] == 0) {
cout << "│";
cout << "";
cout << " │";
}else {
cout << "│";
cout << "사용중";
cout << "│";
}
}
cout << endl;
cout << "└───┘└───┘└───┘└───┘└───┘"<< endl;

키워드

  • 가격8,000
  • 페이지수50페이지
  • 등록일2009.12.21
  • 저작시기2009.12
  • 파일형식압축파일(zip)
  • 자료번호#569051
본 자료는 최근 2주간 다운받은 회원이 없습니다.
청소해
다운로드 장바구니