0
I need the user to enter a number that will be the amount of numbers to be calculated, for example: if I type 4, there will be 4 different numbers to do a given action (add, subtract, multiply or divide). For this I tried to create a function that returns me a array:
public int quantNum(int quantidadeNumeros)
{
//Cria a array que vai armazenar os valores a serem calculados.
int[] numerosCalcular = new int[quantidadeNumeros];
return numerosCalcular[quantidadeNumeros];
}
I don’t know if this function is right, why can’t I call it in the main scope of my program that it’s like this:
string mensagemIinicio = "Bem vindo a calculadora do console 0.1 Alpha.";
Console.WriteLine(mensagemIinicio);
Console.WriteLine("Por favor insira quantos números você quer calcular.");
int quantNumCalc = Convert.ToInt32(Console.ReadLine());
//Verifica se o usuário digitou mais de um número e retorna uma mensagem
while (quantNumCalc < 2)
{
Console.WriteLine("Operação inválida. Digite mais de um número(ERRO 0001)");
Console.WriteLine("pressione qualquer tecla e aperte enter para tentar novamente.");
Console.ReadLine();
Console.Clear();
Console.WriteLine(mensagemIinicio);
Console.WriteLine("Por favor insira quantos números você quer calcular.");
int x = Convert.ToInt32(Console.ReadLine());
quantNum(x);
}
Thanks for the reply my friend! So dude I’m at the beginning of the walk so there’s A LOT;
– BRKiHeL
@Brkihel see on [tour] the best way to say thank you.
– Maniero