일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- if문
- 반복문
- c언어
- 백도어
- 배열
- 리눅스 명령어
- 정보영재원
- 자료구조
- 정보올림피아드
- 다중반복문
- 수학영재원
- Linux
- 문제출저:www.dovelet.com
- IT
- 정보과학
- Backdoor
- 영재교육원
- DBMS
- C++
- 제어문
- 풀이&소스코드저작권:왕유승
- 참조은요양병원
- C
- 독후감
- 알고리즘
- 프로그래밍
- 독서 감상문
- API
- 리눅스
- For문
- Today
- Total
되는대로 살자
[C언어 프로젝트] 미니게임 모음 숫자-스피드숫자 본문
함수 구현
void numcount()
{
system("cls");
int x,y,chance;
int num;
int key;
int stage;
srand((unsigned)time(NULL));
printf("난이도를 선택하세요.\n");
printf("(1.쉬움 2.보통 3.어려움)\n");
printf("선택=> ");
scanf("%d",&stage);
while(1)
{
i = rand() % 10 + 1;
x = rand() % 36;
y = rand() % 10;
system("cls");
printf("시작합니다.");
delay(1500);
system("cls");
gotoxy(x,y); printf("%d",i);
if(stage==1)
delay(300);
if(stage==2)
delay(100);
if(stage==3)
delay(40);
system("cls");
printf("입력=> ");
scanf("%d",&num);
if( num == i )
{
printf("정답입니다.");
delay(1500);
system("cls");
}
else
{
printf("오답입니다.");
delay(1500);
system("cls");
break;
}
}
delay(1000);
system("cls");
printf("한번 더? (1.yes / 2. no)\n");
printf("숫자=> ");
scanf("%d",&chance);
if( chance == 1 )
{
numcount();
}
if( chance == 2 )
{
delay(1000);
system("cls");
numGameMoum();
}
}
'2009~2014 > Proejct' 카테고리의 다른 글
[C 게임 프로젝트] 지뢰찾기 실행파일(exe) (0) | 2010.11.11 |
---|---|
[C 게임 프로젝트] 지뢰찾기 전체 소스코드 (0) | 2010.11.11 |
[C언어 프로젝트] 섯다 (0) | 2010.11.05 |
2009 영재원 졸업 작품-C로 뿌요뿌요 구현 4.Flow chart (0) | 2010.07.15 |
2009 영재원 졸업작품-C로 뿌요뿌요 구현 3.프로그램 설명 (0) | 2010.07.15 |