#include <iostream>
#include <windows.h>
using namespace std;
void captura();
void imprimir();
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 matriz[6][6], x=5,y=8;
int main(){
captura();
imprimir();
system("pause");
return 0;
}
void captura(){
for(int i=0; i<=5; i++){
for(int j=0; j<=5; j++){
cout<<"Ingrese la calificacion:"<<endl;
cin>>matriz[i][j];
}
}
system("cls");
}
void imprimir(){
for(int i=0; i<=5; i++){
for(int j=0; j<=5; j++){
gotoxy(x,y);
cout<<matriz[i][j];
x+=5;
}
y+=2;
x=5;
}
}
No hay comentarios.:
Publicar un comentario