namespace Practica_1
{
class Program
{
static void Main(string[] args)
{
//aqui generas la matriz con los numeros aleatoreos
//luego lees del teclado el numero deseado
Console.WriteLine( BuscaPosicion(aki la matriz generada , aqui el numero a buscar));
}
static int BuscaPosicion(int[] A, int x)
{
int posicion = -1;
int i = 0;
while ((posicion == -1) && (i < A.Length))
{
if (A[i] == x)
{
posicion = i;
}
else
{
i++;
}
}
return posicion;
}
}
}