" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
#include <cstdlib>
#inclide <stdio.h>
using namespace std;
main()
{
int V[10];
for (int i=1;i<=10;i++){
cout<<"Ingrese el "<<i<<"elemento: ";
cin>>V[i];
}
cout<<"Posición 5: "<<V[5]<<endl;
cout<<"Posición 8: "<<V[8]<<endl;
cout<<"Posición 3: "<<V[3]<<endl;
}