C# practica
using System;
using System.Collections.Generic;
using System.Text;
namespace chostosalvajedelaspraderas
{
class Program
{
static void Main(string[] args)
{
int i;
for (i = 0; i < 10; i++)
{
Console.WriteLine(“hola mundo”);
}
string a = Console.ReadLine();
}
}
}
Loading...