Contactos
Servicios de:
Entradas populares
-
Buenas acá les dejare como hacer un formulario para una factura en VISUAL BASIC 2010 sin una conexión a una base de datos. CREAR EL FORM...
-
Para aquellos que hallas instalado una nueva targeta grafia a su PC y hallan cambiado los valores del fifasetup para ajustar una nueva cali...
-
ACA LES TRAIGO UN VIDEO TUTORIAL EN 3 PARTES, DONDE EXPLICARE COMO REALIZAR UNA SUMA DE DOS NUMEROS EN VISUAL BASIC 2010: VIDEOS: PA...
-
Base de datos Una base de datos o banco de datos (en ocasiones abreviada con la sigla BD o con la abreviatura b. d.) es un conju...
-
DISEÑAR UN BORDADO EN WILCOM 9 EN ESTE VIDEO TUTORIAL LE EXPLICO COMO HACER UN BORDADO USANDO WILCOM 9.
-
COMO CONECTAR UNA BASE DE DATOS USANDO EL CONTROL DATA Y DAO MEDIANTE CODIGO EN VISUAL BASIC 6.0 ACA DEJO EL LINKS DE DESCARGA SUBID...
-
Programa para determinar el ganador de unas elecciones hechos en pascal…. IMAGENES: Código Fuente: program elecciones; Uses Crt; ...
-
PESEdit 2013 Patch 5.0 PES 2013 (Temporada 13/14) CARACTERÍSTICAS EN LA VERSIÓN 5.0 + Más de 1.500 transferencias de verano (desde 4...
Archives
Formulario de contacto
PROGRAMA ELECCIONES.
Programa para determinar el ganador de unas elecciones hechos en pascal….
IMAGENES:
Código Fuente:
program elecciones;
Uses Crt;
// PROCEDIMIENTOS //
procedure cont_votos;
Var
Opc: Integer;
Cont_ca, Cont_cb, Cont_cd: integer;
Cont_vn: integer;
i: integer;
Begin
Cont_ca:= 0;
Cont_cb:= 0;
Cont_cd:= 0;
Cont_vn:= 0;
ClrScr;
for i:= 1 to 10 do
Begin
Clrscr;
Writeln('Programa para determinar el ganador en una elecciones');
Writeln('');
Writeln('Eslija un Candidato');
writeln('');
writeln('1)--> CANDIDATO A');
writeln('2)--> CANDIDATO B');
writeln('3)--> CANDIDATO C');
writeln('4)--> NINGUNO DE LOS CANDIDATOS');
readln(Opc);
//
Case Opc of
1: begin
Cont_ca:= Cont_ca + 1;
end;
2: begin
Cont_cb:= Cont_cb + 1;
end;
3: begin
Cont_cd:= Cont_cd + 1;
end;
4: begin
Cont_vn:= Cont_vn + 1;
end;
Else
begin
Writeln('La Opcion seleccionada no esta entre los Nø 1 al 4ø');
readln;
end;
//
end;
ClrScr;
if (Cont_ca > Cont_cb) and (Cont_ca > Cont_cd) then
Begin
Writeln('El Ganador es el CANDODATO A con un total de:');
Writeln(Cont_ca,' Votos');
Writeln('----------------------------');
Writeln('Votos de los demas Candidatos');
Writeln(' CANDIDATO B:',Cont_cb ,' Votos');
Writeln(' CANDIDATO C:',Cont_cd ,' Votos');
Writeln('----------------------------');
Writeln('VOTOS NULOS:', Cont_vn, ' Votos');
end;
if (Cont_cb > Cont_ca) and (Cont_cb > Cont_cd) then
Begin
Writeln('El Ganador es el CANDODATO B con un total de:');
Writeln(Cont_cb,' Votos');
Writeln('----------------------------');
Writeln('Votos de los demas Candidatos');
Writeln(' CANDIDATO A:',Cont_ca ,' Votos');
Writeln(' CANDIDATO C:',Cont_cd ,' Votos');
Writeln('----------------------------');
Writeln('VOTOS NULOS:', Cont_vn, ' Votos')
end;
if (Cont_cd > Cont_ca) and (Cont_cd > Cont_cb) then
Begin
Writeln('El Ganador es el CANDODATO D con un total de:');
Writeln(Cont_cd,' Votos');
Writeln('----------------------------');
Writeln('Votos de los demas Candidatos');
Writeln(' CANDIDATO A:',Cont_ca ,' Votos');
Writeln(' CANDIDATO B:',Cont_cb ,' Votos');
Writeln('----------------------------');
Writeln('VOTOS NULOS:', Cont_vn, ' Votos')
end;
end;
end;
//CUERPO DEL PROGRAMA//
Begin
cont_votos;
readkey;
end.
HOla interente el proyecto, no tendras igualito en java
ResponderEliminar