Ejemplo De Vectores En C++
Enviado por s.montoya.a • 9 de Noviembre de 2011 • 299 Palabras (2 Páginas) • 903 Visitas
#include <iostream>
#include <conio.h>
#include <stdio.h>
int main(){
int a[8],b[8],c[8],x;
for (x=0;x<8;x++){
printf("ingrese valor %d al vector A : ",(x+1));
scanf("%d",&a[x]);
}
printf ("nn");
for (x=0;x<8;x++){
printf("ingrese valor %d al vector B : ",(x+1));
scanf("%d",&b[x]);
}
for(x=0;x<8;x++){
if (a[x]>b[x]) {
c[x]=a[x];
}else{
c[x]=b[x];
}
}
printf("nn");
for (x=0;x<8;x++){
printf(" %d ",a[x]);
}
printf ("nn");
for (x=0;x<8;x++){
printf(" %d ",b[x]);
}
printf ("nn");
for (x=0;x<8;x++){
printf(" %d ",c[x]);
}
printf ("nn ejercicio 2 nn" );
for (x=0;x<8;x++){
if (b[x] & 2 ==0){
c[x]=b[x]*2;
}
}
printf ("nn");
system("pause");
}
...