#include <iostream>
#include <windows.h>
#include <stdlib.h>
using namespace std;
void captura();
void imprime();
void color();
void gotoxy(int x,int y){
HANDLE hcon;
hcon=GetStdHandle(STD_OUTPUT_HANDLE);
COORD dwpos;
dwpos.X=x;
dwpos.Y=y;
SetConsoleCursorPosition(hcon,dwpos);
}
int A[4][4],i,h,x=5,y=8;
int main()
{
captura();
system("PAUSE");
system("cls");
imprime();
system("PAUSE");
color();
return 0;
}
/*Espacio*/
void captura()
{
for(int i=0; i<=3; i++)
{
for(int h=0; h<=3; h++)
{
cout<<"Captura la calificacion:";
cin>>A[i][h];
}
}
system("cls");
}
/*Espacio*/
void imprime()
{
for(int i=0; i<=3; i++)
{
for(int h=0; h<=3; h++)
{
gotoxy(x,y);
cout<<A[i][h];
x+=5;
}
y+=2;
x=5;
}
}
void color()
{
system("color E");
cout<<"\n HOLA SIMPLES MORTALES \n";
//system("cls");
}
Doc4 by Angel Edwin Ruelas Valencia on Scribd
No hay comentarios.:
Publicar un comentario