JULI PROGRA
TALLER DE ARREGLOS Y MATRICES
1. Escriba un algoritmo que lea dos arreglos de números enteros ORDENADOS ascendentemente y luego produzca la lista ordenada de la mezcla de los dos. Por ejemplo, si los dos arreglos tienen los números 1 3 6 9 17 y 2 4 10 17, respectivamente, la lista de números en la pantalla debe ser 1 2 3 4 6 9 10 17 17.
#include <iostream> using namespace std; int main (){ int Vector1[5]; int Vector2[5]; int Vector3[10]; int aux; cout<< "VECTOR 1" << endl << endl; for (int i = 0; i < 5; i++) { cout << "Introduzca numero " << i+1 << ": "; cin >> Vector1[i];
}
system("cls"); cout << "VECTOR 2" << endl << endl; for (int i = 0; i < 5; i++) { cout << "Introduzca …ver más…
j < 7; j++) { cout << "Introduzca numero para matriz 1 " << i+1 << ": "; cin >> a[i][j]; } } cout << "\nmatriz2" << endl << endl; for (int i = 0; i < 7; i++) { for (int j = 0; j < 7; j++) { cout << "Introduzca numero para matriz 2 " << i+1 << ": "; cin >> b[i][j]; } } for (int i = 0; i < 7; i++) { for (int j = 0; j < 7; j++) { c[i][j]=a[i][j]+b[i][j]; } } cout << endl << "\n solucion de las matrices es:" << endl; for (int i = 0; i < 7; i++) { for (int j = 0; j < 7; j++) { cout << c[i][j] << endl; } } system("pause");
}
b)
#include <iostream> using namespace std; int main(){ int i,j,N,produccionTotal=0, produccion, aux, contVaca=0, dia=0, mayor,elemento; cout<<"Ingrese el numero de vacas\n"; cin>>N; int matrizLeche[7][N]; for(i=0;i<N;i++){ for(j=0;j<7;j++){ cout<<"Ingrese la produccion de la vaca "<<i+1<<" el dia "<<j+1<<"\n"; cin>>matrizLeche[i][j]; produccionTotal=produccionTotal+matrizLeche[i][j]; } } mayor = matrizLeche[0][0];
for(i=0;i<N;i++) { for(j=0;j<7;j++) {