Reporte Programa
Enviado por betovazquez95 • 17 de Septiembre de 2014 • 370 Palabras (2 Páginas) • 146 Visitas
Practica 1: CARATULA
#include <stdio.h>
#include <conio.h>
void main()
{
textbackground(1);
clrscr();
gotoxy(21,2); textcolor(6); textbackground(1);
cprintf(" INSTITUTO POLITECNICO NACIONAL ");
gotoxy(21,4); textcolor(6); textbackground(1);
cprintf(" ESCUELA SUPERIOR DE INGENIERIA ");
gotoxy(21,5); textcolor(6); textbackground(1);
cprintf(" MECANICA Y ELECTRICA ");
gotoxy(21,7); textcolor(6); textbackground(1);
cprintf(" UNIDAD ZACATENCO “);
gotoxy(21,9); textcolor(6); textbackground(1);
cprintf(" INGENIERIA EN COMUNICACIONES ");
gotoxy(21,10); textcolor(6); textbackground(1);
cprintf(" Y ELECTRONICA “);
gotoxy(21,12); textcolor(6); textbackground(1);
cprintf(" PROFESOR: ");
gotoxy(21,13); textcolor(6); textbackground(1);
cprintf(" GARDUNO MEDINA JORGE ADRIAN ");
gotoxy(21,15); textcolor(6); textbackground(1);
cprintf(" ALUMNOS: ");
gotoxy(21,16); textcolor(6); textbackground(1);
cprintf(" ****** ");
gotoxy(21,17); textcolor(6); textbackground(1);
cprintf(" ******* ");
gotoxy(21,19); textcolor(6); textbackground(1);
cprintf(" GRUPO: ");
gotoxy(21,20); textcolor(6); textbackground(1);
cprintf(" ***** “);
gotoxy(21,22); textcolor(6); textbackground(1);
cprintf(" NUMERO DE EQUIPO: ");
gotoxy(21,23); textcolor(6); textbackground(1);
cprintf(" ***** ");
getch();
clrscr();
}
Practica 2 : CONVERSOR DE MONEDAS
#include<stdio.h>
#include<conio.h>
void main()
{
float eur,dol,pes,lib;
caratula();
clrscr();
gotoxy(33,4); textcolor(4);cprintf("∫ Conversor de moneda ∫");
gotoxy(29,7); printf("Ingresar el valor en pesos:"); textcolor(4);cscanf("%f",&pes);
dol=pes/13.00;
eur=pes/17.97;
lib=pes/22.04;
gotoxy(35,10);textcolor(2);cprintf(" Dolares= %.2f ",dol);
gotoxy(35,11);textcolor(2);cprintf(" Euros= %.2f ",eur);
gotoxy(35,12);textcolor(2);cprintf(" Libras= %.2f ",lib);
getch();
getch();
...