-
Notifications
You must be signed in to change notification settings - Fork 0
/
main_home.c
141 lines (123 loc) · 3.38 KB
/
main_home.c
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include<windows.h>
#include "bomb_avoid.h"
#include "tetris.h"
int num_bb();
int rsp();
int main() {
int n;
while (1) {
printf("하실 게임을 입력하십시오.\n 1, 숫자야구\n 2, 테트리스\n 3, 가위 바위 보\n 4, 폭탄 피하기\n 5, 게임 끝내기\n");
scanf_s("%d", &n);
switch (n)
{
case(1): num_bb(); Sleep(1000); system("cls");break;
case(2): tetris(); Sleep(1000); system("cls"); break;
case(3): rsp(); Sleep(1000); system("cls"); break;
case(4): bomb(); Sleep(1000); system("cls"); break;
case(5): return 0;
}
}
}
int num_bb() {
int answer[3];
int guess[3];
int strike = 0;
int ball = 0;
answer[0] = rand() % 9 + 1;
do {
answer[1] = rand() % 10;
} while (answer[0] == answer[1]);
do {
answer[2] = rand() % 10;
} while (answer[0] == answer[2] || answer[1] == answer[2]);
printf("게임을 시작합니다!\n");
while (strike != 3) {
printf("3자리 숫자를 입력하세요 (중복 없이): ");
scanf_s("%1d%1d%1d", &guess[0], &guess[1], &guess[2]);
strike = 0;
ball = 0;
for (int i = 0; i < 3; i++) {
if (guess[i] == answer[i]) {
strike++;
}
else {
for (int j = 0; j < 3; j++) {
if (guess[i] == answer[j]) {
ball++;
break;
}
}
}
}
printf("결과: %d 스트라이크, %d 볼\n\n", strike, ball);
}
printf("축하합니다! 정답을 맞추셨습니다.\n");
int ana;
printf("해당 게임을 계속 플레이 할 것인가요?...네(1),아니요(0) :");
scanf_s("%d", &ana);
if (ana == 1) {
system("cls");
num_bb();
}
else if (ana == 0) {
return 0;
}
}
int rsp() {
int userChoice, computerChoice;
printf("가위(1), 바위(2), 보(3) 중 하나를 선택하세요: ");
scanf_s("%d", &userChoice);
computerChoice = rand() % 3 + 1;
printf("사용자: ");
switch (userChoice) {
case 1:
printf("가위\n");
break;
case 2:
printf("바위\n");
break;
case 3:
printf("보\n");
break;
default:
printf("잘못된 선택\n");
rsp();
}
printf("컴퓨터: ");
switch (computerChoice) {
case 1:
printf("가위\n");
break;
case 2:
printf("바위\n");
break;
case 3:
printf("보\n");
break;
}
if (userChoice == computerChoice) {
printf("비겼습니다!\n");
}
else if (
(userChoice == 1 && computerChoice == 3) ||
(userChoice == 2 && computerChoice == 1) ||
(userChoice == 3 && computerChoice == 2)
) {
printf("사용자가 이겼습니다!\n");
}
else {
printf("컴퓨터가 이겼습니다!\n");
}
int ana;
printf("해당 게임을 계속 플레이 할 것인가요?...네(1),아니요(0) :");
scanf_s("%d", &ana);
if (ana == 1) {
rsp();
}
else if(ana==0){
return 1;
}
}