c++로 코드작성중 오류가 떳는데 어딜 고쳐야 할지 모르겟네요;;;

ansgur1979의 이미지

#pragma once
#include "playerdata.h"
#include <string>
 
#define width 20
#define height 20
class bacukpan						 //badukpan인데 오타가 나서 bacukpan임  (상속을 받을려고 했으나 오류->직접접근이라서 안됨)
{
public:
	bacukpan(void);
	~bacukpan(void);
	void change1 ();											//좌표값를 이동해서 바둑알을 놓는 기능
	void print ();												//화면에 대전의 정보를 출력하는 기능
	void put(int& Rx,int& Ry);									//바둑알을 놓는 기능
	inline void putdata()			//입력받은 선수의 이름을 객체에다가 대입
	{
		m_name2[0] = player[0].m_name;
		m_name2[1] = player[1].m_name;
 
	}
	bool CheckFive() ;								//오목이 존재하는가를 확인
	playerdata player[2];										//바둑판에 존재하는 두명의 선수를 불러옴
 
	void Rwidthcheck(int& Rx,int& Ry, int& Rinhibit);			//바둑판에서 가로로 뚫여있는 3목이 성립되는지를 확인함
	void Lwidthcheck(int& Rx,int& Ry, int& Rinhibit);
	void DWheightcheck(int& Rx,int& Ry, int& Rinhibit);			//바둑판에서 세로로 뚫여있는 3목이 성립되는지를 확인함
	void UPheightcheck(int& Rx,int& Ry, int& Rinhibit);
	void RDdigonal(int& Rx,int& Ry, int& Rinhibit);				//바둑판에서 오른쪽아래쪽으로 뚫여있는 3목이 성립되는지를 확인함
	void RUdigonal(int& Rx,int& Ry, int& Rinhibit);	
	void LDdigonal(int& Rx,int& Ry, int& Rinhibit);				//바둑판에서 왼쪽아래쪽으로 뚫여있는 3목이 성립되는지를 확인함
	void LUdigonal(int& Rx,int& Ry, int& Rinhibit);	
	void bancheck();				//금수를 확인함
	void cursormov ();
	void make ();
	//void change2 ();//커서을 입력해서 바둑판의 모양을 바꾸는 기능
	//void move ();//커서를 옮기는 기능
	//void inputimage();//바둑판의 이미지를 변수에 대입시키는 기능
 
protected :
	int x,y;													//바둑판의 좌표값
	int cur[2];													//방향키 입력전의 좌표공간
 
private :
 
	char badukimage[3];											//파일입출력으로 바둑알의 모양을 저장하는 공간
	char cross[height][width];									//파일 입출력으로 바둑판의 모양을 저장하는 공간,널문자도 생각해놓을것
	int playnum	;												//몇번째 수인지 저장하는 공간
	bool omok;
	string* m_name2;											//선수의 이름을 저장하는 공간을 가리키는 포인터
	int inhibitation;											//3*3이 형성됫는지를 정보저장공간
 
};
 
void bacukpan :: cursormov()//UP = (00, 72), LEFT = (00, 75), RIGHT = (00, 77), DOWN = (00, 80)
{
	int cursor;
	while (cursor!=32)
	cursor = _getch();
	if (cursor == 224)
	{
		cursor =_getch();
		switch(cursor)
		{
		case 72:
			if (cur[0]==0)
				break;
			else
			{
				cross[cur[0]][cur[1]]='+';
				cur[0]--;
				cross[cur[0]][cur[1]]='1';
				break;
			}
		case 75:
			if (cur[1]==0)
				break;
			else
			{
				cross[cur[0]][cur[1]]='+';
				cur[1]--;
				cross[cur[0]][cur[1]]='1';
				break;
			}
		case 77:
			if (cur[1]==19)
				break;
			else
			{
				cross[cur[0]][cur[1]]='+';
				cur[1]++;
				cross[cur[0]][cur[1]]='1';
				break;
			}
		case 80:
			if (cur[0]==19)
				break;
			else 
			{
				cross[cur[0]][cur[1]]='+';
				cur[0]++;
				cross[cur[0]][cur[1]]='1';
				break;
			}
		case 224:
			{
			put(cur[0],cur[1]);
			break;
			}
		default:
			cout << "잘못된 버튼을 눌렀습니다.";
		}
 
	}
 
}

VS 2010 에서 c++로 오목을 만들고 있는데 화살표를 입력하는 방식으로 배열들에 저장되어있는 문자를 바꾸려고 하는데

c:\program files\microsoft sdks\windows\v7.0a\include\wingdi.h(2607): error C2059: 구문 오류 : '상수'
1>c:\program files\microsoft sdks\windows\v7.0a\include\wingdi.h(2607): error C2238: ';' 앞에 예기치 않은 토큰이 있습니다.
1>c:\program files\microsoft sdks\windows\v7.0a\include\wingdi.h(2608): error C2059: 구문 오류 : '상수'
1>c:\program files\microsoft sdks\windows\v7.0a\include\wingdi.h(2608): error C2238: ';' 앞에 예기치 않은 토큰이 있습니다.
1>c:\program files\microsoft sdks\windows\v7.0a\include\wingdi.h(2745): error C2059: 구문 오류 : '상수'
1>c:\program files\microsoft sdks\windows\v7.0a\include\wingdi.h(2745): error C2238: ';' 앞에 예기치 않은 토큰이 있습니다.
1>c:\program files\microsoft sdks\windows\v7.0a\include\wingdi.h(2746): error C2059: 구문 오류 : '상수'
1>c:\program files\microsoft sdks\windows\v7.0a\include\wingdi.h(2746): error C2238: ';' 앞에 예기치 않은 토큰이 있습니다.
1>c:\program files\microsoft sdks\windows\v7.0a\include\wingdi.h(3973): error C2143: 구문 오류 : ')'이(가) '상수' 앞에 없습니다.
1>c:\program files\microsoft sdks\windows\v7.0a\include\wingdi.h(3973): error C2143: 구문 오류 : ';'이(가) '상수' 앞에 없습니다.
1>c:\program files\microsoft sdks\windows\v7.0a\include\wingdi.h(3974): error C2059: 구문 오류 : ')'
1>c:\program files\microsoft sdks\windows\v7.0a\include\wingdi.h(3975): error C2143: 구문 오류 : ')'이(가) '상수' 앞에 없습니다.
1>c:\program files\microsoft sdks\windows\v7.0a\include\wingdi.h(3975): error C2143: 구문 오류 : ';'이(가) '상수' 앞에 없습니다.
1>c:\program files\microsoft sdks\windows\v7.0a\include\wingdi.h(3976): error C2059: 구문 오류 : ')'
1>c:\program files\microsoft sdks\windows\v7.0a\include\wingdi.h(4006): error C2143: 구문 오류 : ')'이(가) '상수' 앞에 없습니다.
1>c:\program files\microsoft sdks\windows\v7.0a\include\wingdi.h(4006): error C2143: 구문 오류 : ';'이(가) '상수' 앞에 없습니다.
1>c:\program files\microsoft sdks\windows\v7.0a\include\wingdi.h(4006): error C2059: 구문 오류 : ')'
1>c:\program files\microsoft sdks\windows\v7.0a\include\oleidl.h(2254): error C2059: 구문 오류 : '상수'
1>c:\program files\microsoft sdks\windows\v7.0a\include\oleidl.h(2254): error C2238: ';' 앞에 예기치 않은 토큰이 있습니다.

같은 오류가 발생하네요;;; 수정해야 할부분이 어디인지 알려주세요 ㅠㅠ

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.