• 통합검색
  • 대학레포트
  • 논문
  • 기업신용보고서
  • 취업자료
  • 파워포인트배경
  • 서식

전문지식 9건

c++ 소스입니다. ostream을 이용하여 파일을 저장하거나 불러올 수 있도록 했습니다. 
  • 페이지 1페이지
  • 가격 3,000원
  • 등록일 2007.06.19
  • 파일종류 압축파일
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
ours; int minutes; friend ostream* operator<<(ostream& os, const Vector& v); public: Time(){hours = 0; minutes = 0;} Time(int h, int m) { hours = h; minutes = m; } Time operator+(const Time& t2) { Time t(0,0); t.hours = this->hours + t2.hours; t.minutes = this->minutes + t2.minutes; re
  • 페이지 3페이지
  • 가격 2,300원
  • 등록일 2014.11.04
  • 파일종류 한글(hwp)
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
#include<stdio.h> namespace mystd //mystd라는 이름공간 시작 { char* endl="\n"; class ostream // 클래스 ostream 정의 { public: ostream& operator<<(char * str) { printf("%s", str); return *this; } ostream& operator<<(int i) {
  • 페이지 9페이지
  • 가격 1,000원
  • 등록일 2008.12.29
  • 파일종류 피피티(ppt)
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
class Complex { friend Complex operator+(const Complex& x, const Complex& y); friend Complex operator-(const Complex& x, const Complex& y); friend Complex operator*(const Complex& x, const Complex& y); friend ostream& operator<<(ostream& os, const Complex& c); friend istream& operator>>(
  • 페이지 30페이지
  • 가격 3,000원
  • 등록일 2014.11.04
  • 파일종류 한글(hwp)
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
ostream &, char *label=0) const; int int_LendCD_Num(); //문자열을 정수형으로 변환합니다. int int_LendBook_Num(); int IsLoan(); //대출중인 도서나 음반이 있으면 1을 리턴합니다. void lendCD(char *cdName); //cd를 대출합니다. void lendBook(char *bookName); //도서를
  • 페이지 20페이지
  • 가격 5,000원
  • 등록일 2006.06.05
  • 파일종류 압축파일
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
top