suma y mayo a menor
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
#include <iostream>
#include <cstring>
#include <string.h>
#include <set>
using namespace std;
struct par_ordenado{
int x;
int y;
}k;
int i=0,j=0,z,k,sumax=0,sumay=0,aux;
int matriz[10][10];
int main(){
cout<<"ingreso de coordenadas\n\n";
while(true){
cout<<("x >");
cin>>k.x;
cout<<("y >");
cin>>k.y;
if(k.x==-1 && k.y==-1)break;
matriz[i][j]=matriz[k.x][k.y];
i++,j++;
sumax+=k.x;
sumay+=k.y;
}
//ordena x
for(z=0;z<10;z++){
for(k=0;k<9;k++){
if(matriz[k]*>matriz[k+1]*){
aux=matriz[k]*;
matriz[k]*=matriz[k+1]*;
matriz[k+1]*=aux;
}
}
}
cout<<"ordenado respecto a x\n";
for(z=0;z<10;z++){cout<<matriz[z][z]<<endl;}
cout<<"\n\n";
//ordena y
for(z=0;z<10;z++){
for(k=0;k<9;k++){
if(matriz*[k]>matriz*[k+1]){
aux=matriz*[k];
matriz*[k]=matriz*[k+1];
matriz*[k+1]=aux;
}
}
}
cout<<"ordenado respecto a y\n";
for(z=0;z<10;z++){cout<<matriz[z][z]<<endl;}
cout<<"\n\n";
}
|
Last edited on
Hola amigo ,
yo no entiendo exactamente lo que su código está tratando de hacer , ¿podría traducir su pregunta y lo hace exactamente el código en Inglés
(Traducido del Inglés por https://translate.google.com )
Last edited on