Atps Estrutura De Dados Usando
Dissertações: Atps Estrutura De Dados Usando. Pesquise 862.000+ trabalhos acadêmicosPor: fernandoferes • 30/11/2013 • 4.040 Palavras (17 Páginas) • 453 Visualizações
CENTRO UNIVERSITÁRIO ANHANGUERA DE SÃO PAULO
FERNANDO OLIVEIRA FERES– RA 5632121657
MARCOS DE SOUZA – RA 1299167498
SAMIR MONTEIRO DE TOLEDO – RA 5644107797
ATPS DE
ESTRUTURA DE DADOS
3ª ETAPA
SÃO PAULO
2013
RELATÓRIO 2
cadastro_voo.cpp
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
#define fim NULL
typedef struct VOO {
long int numero_voo;
long int dia_voo[02];
long int mes_voo[02];
long int data_voo[04];
long int hora_voo[02];
long int minuto_voo[02];
char aeroporto_saida[30];
char aeroporto_chegada[30];
char rota_voo[30];
long int tempo_hora_estimado;
long int tempo_minuto_estimado;
int qtde_passageiros;
struct VOO *proximo_endereco;
} CADASTRO_VOO;
CADASTRO_VOO *endereco_inicial;
CADASTRO_VOO Deposito;
int main (int argc, char *argv[])
{
long int numero_voo;
long int dia_voo[02];
long int mes_voo[02];
long int data_voo[04];
long int hora_voo[02];
long int minuto_voo[02];
char aeroporto_saida[30];
char aeroporto_chegada[30];
char rota_voo[30];
long int tempo_hora_estimado;
long int tempo_minuto_estimado;
int qtde_passageiros;
int tecla;
Criar_Lista_Voo();
INSERE:
printf("\n");
printf("\n");
printf("\n");
printf("\t CADASTRO DO VOO");
printf("\t---------------------------------------------------------------");
printf("\n");
printf("\n");
printf("\n");
printf("\tO numero do voo e: ");
scanf("%d", &numero_voo);
printf("\tA data do voo e: ");
scanf("%d", &dia_voo + "%d", mes_voo + "%d", ano_voo);
printf("\tO horario do voo e: ");
scanf("%d", &hora_voo + "%d", minuto_voo);
printf("\tO aeroporto de saida do voo e: ");
scanf("%s", &aeroporto_saida);
printf("\tO aeroporto de chegada do voo e: ");
scanf("%s", aeroporto_chegada);
printf("\tA rotado do voo e: ");
scanf("%s", &rota_voo);
printf("\tO tempo estimado do voo e: ");
scanf("%d", &tempo_hota_estimado + "%d", tempo_minuto estimado);
printf("\tA quantidade de passageiros no voo e: ");
scanf("%d", &qtde_passageiros);
Inserir_Voo(
numero_voo,
dia_voo,
mes_voo,
ano_voo
hora_voo,
minuto_voo,
aeroporto_saida,
aeroporto_chegada,
rota_voo,
tempo_hora_estimado,
tempo_minuto_estimado,
qtde_passageiros
);
printf("\n");
printf("\tDeseja cadastrar mais voos?\n\tSe SIM Tecle <1>, Se NAO tecle outra tecla: ");
scanf("%d",&tecla);
if (tecla == 1)
goto INSERE;
printf("\n");
printf("\n");
...