학교과제인데 도무지 아이디어가 떠오르질않네요. 도와주세요..
희미한눈물
// lecture41.cpp : Defines the entry point for the console application.
//
#include stdafx.h
#include iostream.h
class game {
public:
int board[9];
void set_value(int *b);
void display_board(void);
int game::find_zero(int i);
int game::get_position(int aa);
void game::exchange(int i, int j);
int game::get_input(void);
int game::is_success(void);
void game::display_success_message(void);
};
void game::set_value(int *b) {
int i;
for ( i = 0 ; i 9 ; ++i ) {
board[i] = b[i];
}
}
void game::display_board(void) {
int i;
for ( i = 0 ; i 9 ; ++i ) {
if ( (i % 3) == 0 )
cout \n;
if ( board[i] == 0 )
cout ;
else {
cout.width(2);
cout board[i] ;
}
}
cout \n;
}
int game::find_zero(int i) {
if ( i = 3 ) {
if (board[i-3] == 0)
return i-3;
}
if ( i = 5 ) {
if (board[i+3] == 0 )
return i+3;
}
if ( (i % 3) 2 ) {
if (board[i+1] == 0)
return i+1;
}
if ( (i % 3) 0 ) {
if (board[i-1] == 0)
return i-1;
}
return -1;
}
int game::get_position(int aa) {
int i;
for ( i = 0 ; i 9 ; ++i )
if ( board[i] == aa )
return i;
return -1;
}
void game::exchange(int i, int j) {
int foo;
foo = board[i];
board[i] = board[j];
board[j] = foo;
}
int game::get_input(void) {
int foo;
cout Input the number to move ;
cin foo;
if ( (foo = 1) && (foo = 8) )
return get_position(foo);
else {
cout \n Invalid data \n;
return -1;
}
}
int game::is_success(void) {
int i;
for ( i = 0 ; i 8 ; ++i ) {
if ( board[i] != i+1) {
return 0;
}
}
return 1;
}
void game::display_success_message(void) {
cout Sucesss!\n;
}
int main(int argc, char* argv[])
{
game a;
int foo1, foo2;
int b[9] = {4,3,2,1,5,6,7,0,8};
a.set_value(b);
a.display_board();
while ( a.is_success() != 1 ) {
foo1 =a.get_input();
if ( foo1 != -1 ) {
foo2 = a.find_zero(foo1);
if ( foo2 != -1) {
a.exchange(foo1,foo2);
a.display_board();
}
}
}
a.display_success_message();
return 0;
}
위 프로그램은 3 X 3 퍼즐 게임인데
1 2 3
4 5 6
7 8 이렇게 맞추게 되면 성공이라는 메세지와 함께 끝나게 되는 프로그램입니다.
움직이는 원리가 위 퍼즐모양에서 8을 입력하면 8과 빈칸이 위치가 바뀌는 형식입니다.
문제는 과제인데 몇번입력만에 성공했는지 메세지를 띄워야하는데 감이 오질않네요.ㅠ_ㅠ
그리고 하나더 숫자키 2,4,6,8(위, 왼쪽, 오른쪽, 아래)키로 빈칸이 이동하도록 바꾸어야하느데.
이것 역시 감이오질않네요.. 도움 부탁드립니다. 흰트만이라도 ㅜ_ㅜ
-
여름 2023-09-26
그렇게 한다면야...방향키를 누른 방향의 반대쪽이 움직여지도록 만들면 되지 않나요..^-^;;
-
미리내 2023-09-26
지금 상태가 숫자를 입력하면 숫자가 빈칸으로 이동하는 상태인데 키보트 숫자 화살키로 움직이는 걸로 바꿔야해서요~
-
연파랑 2023-09-26
그런듯
-
친화력 2023-09-26
으음...입력 받을 때마다 카운트 하나씩 올리는 것으로 하면 될 것 같구요...숫자키 보다는 퍼들에 있는 숫자를 입력하면 그 숫자가 빈칸으로 이동하도록 하는 것이 더 낫지 않을까 하는 생각입니다..^-^;