Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Trending News
¿Como Crear Matriz en C#?
Buenas noches...
Se puede hacer en C# que cuando un usuario ingresa un valor se generen ese numero de matrices?
si ingreso un numero "5", automáticamente se me creen 5 matrices?
Gracias...
2 Answers
- MrAlex6204Lv 48 years agoFavorite Answer
Si
serial algo asi
int num;
Console.Write("Teclee la cantidad de elementos:");
num = Console.Read();
string[] Lista = new string[num];
- 4 years ago
// aqui tienes la respuesta. lo probé con g++ en ubuntu /* via bohenyi - sixteen-11-2011 */ #incorporate <stdio.h> #incorporate <stdlib.h> #incorporate <time.h> #define NUM_LETRAS 10 // matriz 3x3 + a million (el cero al very final de la cadena) int significant(void){ char valores[NUM_LETRAS] = "ABCDEFGHI"; //valores posibles char matriz[3][3]; //matriz de salida char valor_nuevo; //valor aleatorio escogido int index; //indice de los valores a elegir srand (time(NULL)); //asegurarse que son valores "aleatorios" //cilclo for (int i=0; i<3; i++){ for (int j=0; j<3; j++){ //escoger un valor, pero no parar mientras no esté repetido, es decir no se haya seleccionado do{ index = rand()%(NUM_LETRAS-a million); //indice aleatorio del valor a elegir valor_nuevo = valores[index]; //asignar el nuevo valor } on an identical time as (valor_nuevo=='*'); //asignar el nuevo valor a la salida matriz[i][j] = valor_nuevo; //el asterisco es una marca que ponemos para marcar los valores que ya usamos y descartarlos valores[index] = '*'; //escribir el resultado fila por fila printf("%c ", matriz[i][j]); } //siguiente fila printf("n"); } //fin del ciclo return 0; }