forked from BecoSystems/poli-prog1-advtxt-exn-adventuretxt
-
Notifications
You must be signed in to change notification settings - Fork 2
/
ex11.c
37 lines (31 loc) · 953 Bytes
/
ex11.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
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
void usarBuzina() {
printf("Você usou a buzina! Ela é magica e mandou o batman para outra dimensao.\n");
printf("O Batman fica confuso e você consegue escapar!\n");
}
void usarTaco() {
printf("Você usou o taco de beisebol! Você tenta atingir o Batman.\n");
printf("Mas ele esta podre e quebra quando voce tenta usar - O batman pegou voce!\n");
}
int main() {
int escolha;
printf("O Coringa está tentando fugir do Batman!\n");
printf("Escolha um objeto para usar:\n");
printf("1. Buzina\n");
printf("2. Taco de beisebol\n");
printf("Digite 1 ou 2: ");
scanf("%d", &escolha);
switch (escolha) {
case 1:
usarBuzina();
break;
case 2:
usarTaco();
break;
default:
printf("Escolha inválida! O Batman te pega enquanto você hesita!\n");
}
return 0;
}