Você está na página 1de 1

#include

#include
#include
#include

<conio.h>
<iostream.h>
<iomanip.h>
<windows.h>

void main()
{
SetConsoleTitle("Minimos cuadrados");
portada();
menu();
}
void portada();
{
for(int i=0; i<5; i++) cout<< endl;
cout<< setw(50)<< "Instituto Politecnico Nacional"<< endl<< endl;
cout<< setw(50)<< "ESIME Culhuacan"<< endl<< endl<< endl;
cout<< setw(50)<< "Analisis Numerico"<< endl<< endl<< endl;
cout<< setw(50)<< "Alumnno: Alcantara Salazar Mauricio Rosendo"<< endl<<
endl;
cout<< setw(50)<<"Profesor: Ing Wilfrido Angeles Quiroz";
for(int i=0; i<5; i++) cout<< endl;
cout<< ...presione enter;
}
void menu()
{
int sel;
for(int i=0; i<5; i++) cout<< endl;
cout<< setw(25)<< "SELECCIONE UNA OPCION"<< endl<< endl;
cout<< setw(25)<< "Ingresar............... (1)<< endl;
cout<< setw(25)<< "Grafica................ (1)<< endl;
cout<< endl<< endl<< endl<< "ESC para salir...";

Você também pode gostar