ATPS - Biblioteca
Por: r3natoakira • 11/11/2015 • Pesquisas Acadêmicas • 638 Palavras (3 Páginas) • 206 Visualizações
UNIVERSIDADE ANHANGUERA DO BRASIL
ATPS – SISTEMA BIBLIOTECA
OSASCO
2014
UNIVERSIDADE ANHANGUERA DO BRASIL
ATPS – SISTEMA BIBLIOTECA[pic 1]
OSASCO
2014
SUMÁRIO
1. PROGRAMA
1.1. PRINT’S
1. PROGRAMA
#include
#include
#include
#include
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char *argv[]) {
setlocale(LC_ALL, "Portuguese");
int numero, resposta;
do{
system("cls");
puts("Biblioteca de HQ's");
puts("");
puts(" 1 - Todos os HQ's e Mangas\n 2 - Gêneros\n 3 - Autores \n 4 - Top 10\n\n");
puts("");
printf("Digite a opção desejada: ");
scanf("%d", &numero);
switch (numero){
case 1:
printf("\n\n Naturo;\n One Piece;\n Arquerio Verde;\n Thor;\n Constantine;\n Mulher maravilha;\n Saint Seiya;\n Zatana;\n Os guardiões da galaxia;\n Matrix;\n Dragon Ball Z;\n Dragon Ball GT;\n Batman;\n X-MEN;\n THOR;\n Homem Aranha;\n Quarteto Fantástico;\n SuperMan;\n");
printf(" Capitão América;\n Flanetary;\n Invencível;\n Gantz;\n Lanterna Verde;\n Demolidor;\n Pokémon;\n Para mais detalhes acesse nosso site.\n\n");
break;
case 2:
printf("\n\n Ação;\n Comédia;\n Romance;\n Drama;\n Suspense e \n Aventura.\n\n");
break;
case 3:
printf("\n\n Marvel Comics;\n Abril Educação;\n Vertigo;\n Shonen jump e\n DC Comics.\n MAIORES EDITORES DO BRASIL.\n\n");
break;
case 4:
printf("\n\n OS Top 10 são...\n Dragon Ball Z\n One piece\n X-MEN\n THOR \n SuperMan \n The Avengers; \n Arqueiro Verde \n Gantz \n Batman the new 52 \n Constantine \n\n");
break;
default:
printf("\n\n O Valor inserido está inválido -> %d\n\n",numero);
break;
}
printf("\n1 - Para voltar as opções acima.\n\n");
printf("2 - Para SAIR\n\n");
printf("Digite a opção desejada: ");
...