-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
86 lines (86 loc) · 2.53 KB
/
main.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
#include <stdio.h>
#include <stdlib.h>
#include <locale.h>
#include"Exercicio.h"
/*
Desenvolvedor - David Machado da silva
Curso-Redes de computadores
Instituição - Ifpb
*/
int main(){
setlocale(LC_ALL, "Portuguese");
int quantidade,pos;
tlista lista,tmp;
telem valor;
criar(&lista);
char opc,curso[MAX];
do{
system("cls");
puts("|--------------------------------|");
puts("| Inscrição de alunos |");
puts("| |");
puts("| 1-Exibir lista |");
puts("| 2-Inserir Aluno |");
puts("| 3-Procurar Curso |");
puts("| 4-Maior de 18 |");
puts("| ESC-Sair |");
puts("| Digite sua Opção: |");
puts("|--------------------------------|");
opc = getch();
switch(opc){
/////////////////////////////////////////////////////////////////////////////
case'1':{
system("cls");
printf("tamanho %d\n",tamanho(lista));
if (vazia(lista)){
puts("lista vazia !");
system("pause");
break;
}
tmp = lista;
for (tmp = lista; tmp!= NULL; tmp = tmp->prox){
puts("---------------------------------------");
printf("|matricula = %d|\n", tmp->matricula);
printf("|Curso = %s|",tmp->curso);
printf("|Nome = %s|\n",tmp->nome);
printf("|Idade = %d|\n",tmp->idade);
puts("---------------------------------------");
}
system("pause");
break;
}
///////////////////////////////////////////////////////////////////////////////////////////////////////
case'2':{
system("cls");
printf("Digite a posição :");
scanf("%d",&pos);
if(inserirDados (&lista,pos)){
puts("inserido com sucesso !");
}else{
puts("verifique a posição informada e tente novamente !");
}
system("pause");
break;
}
/////////////////////////////////////////////////////////////////////////////////////////
case'3':{
system("cls");
printf("Digite o Curso :");
scanf("%s",curso);
if(!(verificaCurso (lista,curso))){
puts("não existe esse curso na lista");
}
system("pause");
break;
}
case '4':{
system("cls");
if(!(maiorDeIdade(lista))){
puts("Não existe maior de idade");
system("pause");
}
break;
}
}
}while(opc != 27);
}