miércoles, 6 de noviembre de 2019

PROGRAMA 68

#include <stdio.h>
#include <iostream>
#include <windows.h>
using namespace std;
void captura();
void imprimir();
void imprimirinverso();
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[3][4], x=5,y=8;
int main()
{
captura();
imprimir();
imprimirinverso();
return 0;
}
void captura(){
for(int i=1; i<=3; i++)
{
for(int j=1; j<=4; j++)
{
gotoxy(y,x);
cin>>A[i][j];
x+=5;
}
y+=2;
x=5;
}
system("pause");
system("cls");
}

void imprimir(){
for(int i=1; i<=3; i++)
{
for(int j=1; j<=4; j++)
{
gotoxy(y,x);
cout<<A[i][j];
x+=5;
}
y+=2;
x=5;
}
system("pause");
system("cls");
}
void imprimirinverso()
{
for(int i=1; i<=3; i++)
{
for(int j=1; j<=4; j++)
{
gotoxy(x,y);
cout<<A[i][j];
x+=5;
}
y+=2;
x=5;
}
system("pause");
system("cls");
}

No hay comentarios.:

Publicar un comentario