-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
67 lines (62 loc) · 2.08 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
using System;
using System.Threading; //biblioteca para o
namespace cronometro
{
class Program
{
static void Main(string[] args)
{
Menu();
}
static void Menu()
{
Console.Clear();
Console.WriteLine("S = Segundo ==> 10s = 10 segundos");
Console.WriteLine("M = Minuto ==> 10m = 10 minutos");
Console.WriteLine("0 = Sair");
Console.WriteLine("Qual tempo deseja contar?");
//
string data = Console.ReadLine().ToLower();
if (data == "0")
System.Environment.Exit(0);
char type = char.Parse(data.Substring(data.Length - 1, 1));
// Substring pega o ultimo caracter, que vai ser o tipo contado
//Substring(indice p começar a contar, quantos caracteres serao pegos)
int time = int.Parse(data.Substring(0, data.Length - 1)); //tempo até finalizar a contagem;
int multiplier = 1;
if (type == 'm')
{
multiplier = 60;// para converter minutos em segundos, simplificando o processo;
}
PreStart(time * multiplier);
}
static void PreStart(int time)
{
Console.Clear();
Console.WriteLine("Ready...");
Thread.Sleep(500);
Console.WriteLine("Set..");
Thread.Sleep(1000);
Console.WriteLine("Go!");
Start(time);
}
static void Start(int time)
{
int currentTime = 0;//contará até chegar no time
Console.WriteLine("0");
Thread.Sleep(1000);//apos 1000 milissegundos imprimira na tela;
while (currentTime != time)
{
Console.Clear();
currentTime++;
Console.WriteLine(currentTime);
Thread.Sleep(1000);
}
//
Console.Clear();
Console.WriteLine("Temporizador finalizado");
Thread.Sleep(2500);
Menu();
}
}
}