This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream>//iniciando bibliotecas | |
#include <conio.h> | |
#include <math.h> | |
#include <stdio.h> | |
using namespace std; | |
///////////////////////////////////////////////////////// | |
void isosceles()//metodo isosceles | |
{ system("cls"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def Validar_Usuario(): | |
Validar_Tarjeta=input("Ingrese Los 16 Digitos De Su Tarjeta :") | |
Nick=input("Digite Su NICK :") | |
if (Validar_Tarjeta=="1111111111111111" and Nick=="1234"): #PRIMERA CUENTA | |
print("***********************") | |
print(" BIENVENIDO ALAIN ") | |
print("***********************") | |
opcion=1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import time, os | |
print("=====================\nBienvenido al cajero\n=====================") | |
# temporizador y limpiado de pantalla | |
time.sleep(1) | |
os.system("clear") | |
# variables | |
atras = ('y') # para cancelar el proceso |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''AUTENTFICACION SIMPLE | |
Public Class Autentificacion | |
Private Sub Validar_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Validar.Click | |
If Password.Text = "1234" Then | |
Correo.Show() | |
Me.Hide() | |
Else | |
MsgBox("AUTENTIFICACION INCORRECTA. INTENTA DE NUEVO") | |
Password.Text = "" |