[c++]에러좀 봐주세요..ㅠㅠ..
연다홍
// StaQue.cpp : Defines the entry point for the console application.
//
#include iostream.h
#include stdlib.h
#include Stack.h
#include Queue.htemplate class Type
void swich(int, Type);
void menu();
template class Type
int main(int argc, char* argv[])
{
Type t;
int choice;
while(choice!=8){
menu();
cin choice t;
swich(choice, t);
system(cls);
}
cout dd endl;
return 0;
}
void menu()
{
cout ------------메뉴------------ endl;
cout 1. 스택에 삽입 2. 큐에 삽입 endl;
cout 3. 스택에서 삭제 4. 큐에서 삭제 endl;
cout 5. 스택 내용 보기 6. 큐 내용 보기 endl;
cout 7. 도움말 8. 종료 endl;
}
template class Type
void swich(int c, Type t)
{
Stack S;
Queue Q;
switch (c) {
case 1:S.Add(t);
exit(1);
case 2: Q.Add(t);
exit(1);
case 3: S.Delete();
exit(1);
case 4: Q.Delete();
exit(1);
case 5: S.StackPrint();
exit(1);
case 6: Q.QueuePrint();
exit(1);
default :
cout 1번 2번은 번호 뒤에 숫자를 하나 더 입력해주세요!! endl
1번부터 7번까지의 숫자를 입력해 주시고 8을 누르면 종료됩니다.
endl;
}
}
모.. 이런 쏘스인데.. 자꾸 에러가 뜨네요..
--------------------Configuration: StaQue - Win32 Debug--------------------
Linking...
LIBCD.lib(crt0.obj) : error LNK2001: unresolved external symbol _main
Debug/StaQue.exe : fatal error LNK1120: 1 unresolved externals
Error executing link.exe.
StaQue.exe - 2 error(s), 0 warning(s)코드 자체엔 문제가 없는것 같은뎅... 이런 식으로... 당최 실행이 안되네요...
이것땜에 추석 연휴동안 고생했습니다.... 큭....
방법좀 알려주세요..ㅠㅠ..