public static void Main()
int[] vetorDeInteiro = new int[20];
double[] vetorDeFlutuante = new double[20];
char[] vetorDeCaractere = new char[20];
string[] vetorDeString = new string[20];
Console.Write("Hello World ");
Console.WriteLine("Hello World");
Console.WriteLine("\nSaldo realizado com sucesso");
Console.WriteLine("\nSaldo insuficiente para realizar um saque");
double valorInvestido = 1000.00;
for (int j = 1; j <= 12; j++)
valorInvestido = valorInvestido * 1.01;
Console.WriteLine("\nCom o Para, o valor investido total é de: " + valorInvestido);
double investimento = 1000.0;
investimento = investimento * 1.01;
Console.WriteLine("\nCom o Enquanto, o valor investido total é de: " + investimento);