en ciclo for imprimir los numeros 1 4 8 12
Deividsito:
Que lenguaje de programación? java, c++, c, c# o cual?
Respuestas
Respuesta dada por:
0
Respuesta:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;
namespace Rextester
{
public class Program
{
public static void Main(string[] args)
{
//Array enteros
int[] numeros = new int[]{1,4,8,12};
// Ciclo "for"
for (int x=0;x<4;x++){
Console.WriteLine("Elemento[{0}] = {1}",x,numeros[x]);
}
// Fin de ciclo
}
}
}
Explicación:
Preguntas similares
hace 4 años
hace 4 años
hace 6 años
hace 8 años