# include <stdio.h> # include <math.h> # include <stdlib.h> # include <iostream> # include <conio.h> using namespace std; main() { int x,intentos=1; char opc; string password; do { printf("\t\n~·~·~·~·~·~·~·~·~·~·~·~·~·~·~·~·~·~·~·~·~·~·~·~·~·~·~·~·~·~·~·~· ~·~·~·~·~·~·~·~·\t"); printf("\t\n\n\t\t\t ª Cetis 141 Dr.Manuel Gamio\t\n"); printf("\t\n\n\t\t\t ª Angel Oswaldo Garcia Padilla\t\n"); printf("\t\n\n\t\t\t ª Brayan Garcia Pacheco\t\n"); printf("\t\n\n\t\t\t ª Jose Antonio Sanchez Ramirez\t\n"); printf("\t\n\n\t\t\t ª NUMEROS DIVISIBLES ENTRE 5\t\n"); printf("\t\n~·~·~·~·~·~·~·~·~·~·~·~·~·~·~·~·~·~·~·~·~·~·~·~·~·~·~·~·~·~·~·~· ~·~·~·~·~·~·~·~·\t"); system("pause"); system("cls");; printf("Introduzca su password: "); cin>>password; if(password=="1234") { do { printf("Numero a Dividir entre 5:"); scanf("%d",&x); if (x%5==0) { printf("LA DIVISION ES EXACTA entre 5\n"); printf("\nOtra operacion (s/n)?"); fflush(stdin); scanf("%c",&opc);; } else { printf("LA DIVISION NO ES EXACTA entre 5\n"); printf("\nOtra operacion (s/n)?"); fflush(stdin); scanf("%c",&opc); } }while(opc!='n'); goto fin; } else { intentos +=1; printf("Incorrecto, te quedan (%d) intentos",3-(intentos-1)); getch(); } }while(intentos<=3); fin: printf("Salir"); }