Gracias.
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes Menú#include <cstdlib>
#include <iostream>
int leer(int v[],int tam);
using namespace std;
int main(int argc, char *argv[])
{
int v[50],n;
cout<<"Ingresar Tamaño del Vector"<<endl;
cin>>n;
leer(v,n);
system("PAUSE");
return EXIT_SUCCESS;
}
int leer(int v[],int tam)
{
for (int i=0;i<tam;i++)
{ cout<<"ingrese Dato ";
cin>>v[i];
}
}
#include <cstdlib>
#include <iostream>
void leer(int v,int tam);
using namespace std;
int main(int argc, char *argv[])
{
int v[50],n;
cout<<"Ingresar Tamaño del Vector"<<endl;
cin>>n;
leer(v,n);
system("PAUSE");
return EXIT_SUCCESS;
}
void leer(int v,int tam)
{
int i;
for (i=0;i<tam;i++)
{
cin>>v[i];
}
}
#include <cstdlib>
#include <iostream>
void leer(int v,int tam);
using namespace std;
int main(int argc, char *argv[])
{
int v[50],n;
cout<<"Ingresar Tamaño del Vector"<<endl;
cin>>n;
leer(v[50],n);
system("PAUSE");
return EXIT_SUCCESS;
}
void leer(int v[50],int tam)
{
int i;
for (i=0;i<tam;i++)
{
cout<<"ingresar dato : "<<endl;
cin>>v[i];
}
}
#include <cstdlib>
#include <iostream>
#define max 300
using namespace std;
void llenar(int &a);
void leer(int a,int b,int c);
int main(int argc, char *argv[])
{
int num[max],i,x,y,h;
llenar(num);
leer(x,y,h);
system("PAUSE");
return EXIT_SUCCESS;
}
void leer(int a,int b,int c)
{
cout<<"Ingrese el valor X ...(0.x)"<<endl;
cin>>a;
cout<<"Ingrese el valor Y ...(0.y)"<<endl;
cin>>b;
cout<<"Ingrese el valor Z ...(0.z)"<<endl;
cin>>c;
}
void llenar(int &a)
{
int i;
for(i=0;i<max;i++)
{
a[i]=0;
}
}