martes, 5 de abril de 2011

C++ PASO DE ARREGLOS POR FUNCION

#include <stdio.h>
#include <conio.h>
#include <iostream>
using namespace std;
void lee_a(int a[],int numero)//tamaño del arreglo y numero
{
int i;
for(i=0;i<numero;i++)
{
cout<<"DIGITE EL VALOR: "<<i+1<<" ";
cin>>a[i];
}
}

int main()
{
int numeros[3];
lee_a(numeros,3);
cout<<"LOS VALORES DEL ARREGLO SON: \n\n";
    for(int i=0;i<3;i++)
    {
    cout<<numeros[i];
    }
   

getch();
}

No hay comentarios:

Publicar un comentario