Skip to content

Instantly share code, notes, and snippets.

@RIENEGAN
RIENEGAN / Funciones.cpp
Last active April 21, 2017 22:08
Tipo_De_Triangulos
#include <iostream>//iniciando bibliotecas
#include <conio.h>
#include <math.h>
#include <stdio.h>
using namespace std;
/////////////////////////////////////////////////////////
void isosceles()//metodo isosceles
{ system("cls");
@RIENEGAN
RIENEGAN / ATM-MAIN.PY
Created April 23, 2017 14:25
SIMULADOR ATM EN PYTHON
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
@RIENEGAN
RIENEGAN / Reacomodo atm-main.py
Created April 23, 2017 18:15
MODIFICACION DE ARCHIVOS BAUTISTA
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
@RIENEGAN
RIENEGAN / SMTP-EMAIL.VB
Created April 26, 2017 23:22
APP PROTOCOLO DE SMTP
''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 = ""