Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
array tipo string
//Microsoft (R) Visual C# Compiler version 3.4.0-beta4-19562-05 (ff930dec) //Copyright (C) Microsoft Corporation. All rights reserved. using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; namespace Rextester { public class Program { public static void Main(string[] args) { string[] array = new string[5];//asi se define un array en C#, la cantidad de posiciones del arreglo // se define en new string[tamaño]; array[3] = "tres";//asigno el nombre pedro a la posicion 3 Console.WriteLine("tamaño del array : {0}", array.Length);//el nombre de mi variable array+.length //da la longitud del array for(int i = 0; (array.Length) > i; i++)//mientras que el tamaño del array sea mayor a el valor i, el bucle // se va a ejecutar { Console.WriteLine("la posicion de i = {0} el valor del array es {1}", i, array[i]);//indico posicion y valor //Console.Read(); } Console.WriteLine("");//para separar //otro array diferente con sus lecturas string[] name = {"zero", "uno", "dos", "tres"};//no defino la longitud final, ya que al inicializarlo //autodefine el tamaño dependiendo de la cantidad de valores Console.WriteLine("tamaño del array : {0}", name.Length); for(int i = 0; (name.Length) > i; i++)//mientras que el tamaño del array sea mayor a el valor i, el bucle // se va a ejecutar { Console.WriteLine("la posicion de i = {0} el valor del array es {1}", i, name[i]);//indico posicion y valor //Console.Read(); } } } }
run
|
edit
|
history
|
help
0
bst - lot of methods
DD
QuickSort
Exp Regular
Stacks: Balanced Brackets
adxaxsdc
Double Jump and Wall Jump
Multi-Dimensional Array
Programmes
GetChange