Progra3, 3
Progra3, 3
Cooperativa Villa
Hermosa
Nombre: Jorge Yonatan Apellido:
Velásquez Ovalle Maestro: Jimmy
beliz Grado: 5to Perito Sección: B
namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{ int conta
= 0; while (conta
< 100)
{
conta = conta + 2;
Console.SetCursorPosition(conta, 12);
Console.Write("/");
Thread.Sleep(300);
Console.SetCursorPosition(50, 13);
Console.Write(conta + "%");
Thread.Sleep(300);
Console.ForegroundColor = ConsoleColor.DarkYellow;
Console.ReadLine();
}
}
}
EJERCICIO 2
using System;
using System.Collections.Generic;
using System.Linq; using
System.Text; using
System.Threading.Tasks;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Console.Title = "Jorge Velasquez Ovalle";
int dividendo = 2; int
divisor = 1; int contador =
0;
Console.ForegroundColor = ConsoleColor.DarkYellow;
Console.ReadLine();
}
} }