en ciclo for imprimir los numeros 1 4 8 12
Deividsito:
Que lenguaje de programación? java, c++, c, c# o cual?
Respuestas a la pregunta
Contestado 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:
Otras preguntas
Historia,
hace 5 meses
Geografía,
hace 5 meses
Matemáticas,
hace 10 meses
Geografía,
hace 1 año
Educ. Fisica,
hace 1 año