|
namespace TextRpg
{
class Player : Character // 캐릭터 상속
{
private int mMP; //플레이어 마나
private int mMaxMP; //플레이어 최대 마나
private int mLevel; //플레이어 레벨
private int mCurrentExp; //플레이어
|
- 페이지 13페이지
- 가격 1,900원
- 등록일 2021.12.10
- 파일종류 피피티(ppt)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
public enum eBattleCommand
{
Attack = 1,
UseItem,
Run,
}
class GameController
{
private bool mbExit;
private Player mPlayer;
private Random mRand;
private int mGold;
private int mExp;
public Ga
|
- 페이지 12페이지
- 가격 1,900원
- 등록일 2021.12.10
- 파일종류 피피티(ppt)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
}
public enum eBattleCommand
{
Attack = 1,
UseItem,
Run,
}
public enum eInnCommand
{
Use,
Exit,
}
class GameController
{
private bool mbExit;
private Player mPlayer;
private Random mRa
|
- 페이지 14페이지
- 가격 1,900원
- 등록일 2021.12.10
- 파일종류 피피티(ppt)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
using System;
using System.Collections.Generic;
using System.Text;
namespace TextRpg
{
class Player : Character // 캐릭터 상속
{
private int mMP; //플레이어 마나
private int mMaxMP; //플레이어 최대 마나
private int mLevel; //
|
- 페이지 12페이지
- 가격 1,900원
- 등록일 2021.12.10
- 파일종류 피피티(ppt)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
using System;
using System.Collections.Generic;
using System.Text;
namespace TextRpg
{
class Player : Character // 캐릭터 상속
{
private int mMP; //플레이어 마나
private int mMaxMP; //플레이어 최대 마나
private int mLevel; //
|
- 페이지 11페이지
- 가격 1,900원
- 등록일 2021.12.10
- 파일종류 피피티(ppt)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
한식, 양식, 중식 선택 가능하며 선택가능한 후 그에 속하는 메뉴 선택
총 가격 합산 후 더치페이로 할 것인지 그냥 계산할것인지 결정가능
인원에 따른 더치페이에 따라 가격 환산 가능
메뉴선택 더치페이기능이 들어간 코딩소스집입니다
|
- 페이지 1페이지
- 가격 7,000원
- 등록일 2021.04.15
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
- int *ptr1, *ptr2, *ptr3; : 모두 int의 (주소값을 저장하는) 변수이다.
- int *ptr1, ptr2, ptr3; : ptr1은 int형 포인터, ptr2, ptr3은 단순히 int형을 나타낸다.
- int *ptr = NULL; : 초기값이 없을 때 NULL로 초기값을 저장한다.
※ 초기값을 넣지 않으면 쓰레기값이
|
- 페이지 4페이지
- 가격 2,000원
- 등록일 2021.05.26
- 파일종류 워드(doc)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
ream>
#include <string>
using namespace std;
class Product
{
protected:
string name;
double price;
public:
Product(string n, double p)
{
name = n;
price = p;
}
void setPrice(double p)
{
price = p;
}
virtual double getPrice()
{
return price;
}
void print()
{
cout<<\"상품명 : \"<<
|
- 페이지 26페이지
- 가격 3,000원
- 등록일 2014.11.04
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
c)
{
return data[c];
}
int getCount()
{
return count;
}
};
int main(void)
{
int count;
List<int> l;
srand(time(NULL));
l.Add(12);
l.Add(52);
l.Add(38);
l.Add(87);
l.Add(28);
l.Add(10);
cout<<\"List 삽입 원소 : 12,52,38,87,28,10\"<<endl;
cout<<\"랜덤 출력 값 : \";
count = rand
|
- 페이지 10페이지
- 가격 2,300원
- 등록일 2014.11.04
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
------------------------\"<<endl;
}
};
int main()
{
Stack s;
try{
s.push(3);
s.display();
s.push(4);
s.display();
s.pop();
s.display();
s.pop();
s.display();
s.pop();
//s.display();
}
catch(char *e)
{
cout<<e<<endl;
}
return 0;
}
4. 성적을 처리하는 클래스 ProcessScore를 작성하라.
#
|
- 페이지 7페이지
- 가격 2,300원
- 등록일 2014.11.04
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|