#include <stdio.h>
#include <iostream>
#include <windows.h>
using namespace std;
void gotoxy(int x,int y)
{
HANDLE hcon;
hcon=GetStdHandle(STD_OUTPUT_HANDLE);
COORD dwpos;
dwpos.X=x;
dwpos.Y=y;
SetConsoleCursorPosition(hcon, dwpos);
}
void completado();
void calcular();
void impresion();
float A[5][5],x=5,y=8,n=0;
int main()
{
completado();
calcular();
impresion();
}
void completado(){
for(int i=0; i<=3; i++){
for(int j=0; j<=3; j++){
gotoxy(x,y);
cin>>A[i][j];
x+=5;
}
y+=2;
x=5;
}
}
void calcular()
{
A[0][4]=A[0][0]+A[0][1]+A[0][2]+A[0][3];
A[0][4]=A[0][4]/4;
A[1][4]=A[1][0]+A[1][1]+A[1][2]+A[1][3];
A[1][4]=A[1][4]/4;
A[2][4]=A[2][0]+A[2][1]+A[2][2]+A[2][3];
A[2][4]=A[2][4]/4;
A[3][4]=A[3][0]+A[3][1]+A[3][2]+A[3][3];
A[3][4]=A[3][4]/4;
A[4][0]=A[0][0]+A[1][0]+A[2][0]+A[3][0];
A[4][0]=A[4][0]/4;
A[4][1]=A[0][1]+A[1][1]+A[2][1]+A[3][1];
A[4][1]=A[4][1]/4;
A[4][2]=A[0][2]+A[1][2]+A[2][2]+A[3][2];
A[4][2]=A[4][2]/4;
A[4][3]=A[0][3]+A[1][3]+A[2][3]+A[3][3];
A[4][3]=A[4][3]/4;
A[4][4]=A[0][4]+A[1][4]+A[2][4]+A[3][4];
A[4][4]=A[4][4]/4;
system("pause");
system("cls");
}
void impresion(){
for(int i=0; i<=4; i++){
for(int j=0; j<=4; j++){
gotoxy(x,y);
cout<<A[i][j];
x+=5;
}
y+=2;
x=5;
}
}
Doc6 by Angel Edwin Ruelas Valencia on Scribd
No hay comentarios.:
Publicar un comentario