PRIMEIRA FORMA WHILE
int mes = 1;
while (mes <= 12)
{
investimento = investimento + investimento * 0.005;
Console.WriteLine(investimento);
mes = mes + 1;
}
SEGUNDA FORMA FOR
for (int mes = 1; mes <= 12; mes = mes +1)
{
investimento = investimento + investimento * 0.005;
Console.WriteLine(investimento);
}