|
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주 판매 이력 없음
|
|
- 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주 판매 이력 없음
|
|
C" WINBASEAPI HWND WINAPI GetConsoleWindow();
void CALLBACK MidiOutProc(HMIDIOUT MidiOut, UINT Msg, DWORD Instance, DWORD Param1, DWORD Param2)
{
}
void OutputError(MMRESULT mmrErrCode)
{
char szErrMsg[128];
midiInGetErrorText(mmrErrCode, (LPSTR)szErrMsg, sizeof(szErrMsg))
|
- 페이지 23페이지
- 가격 10,000원
- 등록일 2014.08.08
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
am>
#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<<"상품명 : "<<nam
|
- 페이지 26페이지
- 가격 3,000원
- 등록일 2014.11.04
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
각 삼각형에서 직각을 낀 두 변의 길이를 a, b라고하고, 빗변의 길이를 c라고 하면
a^2+b^2 =c^2의 수식이 성립한다는 것이다.
#include <iostream>
using namespace std;
int main(void)
{
int a = 1,b = 1,c = 1,count = 0;
cout<<"a : b : c "<<endl;
for(a = 1;a <= 100;
|
- 페이지 12페이지
- 가격 2,300원
- 등록일 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()%l
|
- 페이지 10페이지
- 가격 2,300원
- 등록일 2014.11.04
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|