이전 질문 게시판은 새 글 쓰기를 막았습니다. [질문 게시판]을 이용바랍니다.
Date |
2013/01/27 14:56:44 |
Name |
포도사과 |
Subject |
비쥬얼 C++ 질문 |
이제 막 배우기 시작했는데요. winapi사이트로 하고 있습니다.
근데 버전이 달라서 그런지 컴파일러를 추가를 못해서 그런거 같아요;
-_-;; 2010 익스프레스인가 그거로 시작하고 있는데 조금씩 달라서 어렵네요;
#include <Turboc.h>
void main()
{
int num;
int output;
randomize();
for(;;){
num=random(100)+1;
printf("\n 제가 만든 숫자를 맞춰 보세요.\n");
do {
printf("숫자를 입력하세요(끝낼 때는 999):");
scanf("%d,"&input);
if(input==999){
exit(0);
}
if(intput==num){
printf("맞췄습니다.\n");
}else if(input>num){
printf("입력한 숫자보다 작습니다.\n");
}else{
printf("입력한 숫자보다 더 큽니다.\n");
}
}while(intput!=num);
}
}
1>------ Build started: Project: first, Configuration: Debug Win32 ------
1> rend.cpp
1>c:\cexam\first\first\rend.cpp(15): error C2065: 'input' : undeclared identifier
1>c:\cexam\first\first\rend.cpp(16): error C2065: 'input' : undeclared identifier
1>c:\cexam\first\first\rend.cpp(19): error C2065: 'intput' : undeclared identifier
1>c:\cexam\first\first\rend.cpp(21): error C2065: 'input' : undeclared identifier
1>c:\cexam\first\first\rend.cpp(26): error C2065: 'intput' : undeclared identifier
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
|
통합규정 1.3 이용안내 인용
"Pgr은 '명문화된 삭제규정'이 반드시 필요하지 않은 분을 환영합니다.
법 없이도 사는 사람, 남에게 상처를 주지 않으면서 같이 이야기 나눌 수 있는 분이면 좋겠습니다."
|