-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexercicio30.c
50 lines (45 loc) · 1.13 KB
/
exercicio30.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
//Bibliotecas
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <locale.h>
void main(void)
{
// Regionalização (Desbuga palavras com acento)
setlocale(LC_ALL, "Portuguese_Brazil");
// Declaração das Variáveis
char alunos[5][30];
char proc[30];
char *retorno;
char pergunta;
int loop = 0, x = 0;
for (x; x < 5; x++)
{
if (loop == 0)
{
printf("Informe o nome do aluno: ");
scanf("%s", &alunos[x]);
fflush(stdin);
if (x < 4)
{
printf("Deseja continuar inserindo (S/N)? \n");
scanf("%c", &pergunta);
fflush(stdin);
if (pergunta == ('n' || 'N'))
loop = 1;
}
}
}
printf("Qual nome esta procurando ?\n");
scanf("%s", &proc);
fflush(stdin);
for (int x = 0; x < 4; x++)
{
if ((retorno = strstr(alunos[x], proc)) != NULL)
{
printf("- - - Dados Alunos - - -\n");
printf("Nome: %s\n", alunos[x]);
printf("Posicao na lista: %d", x);
}
}
}