私のプログラムは、前に入力した番号を次の番号に追加する必要があります。これは私がこれまでに持っているもので、行き詰まりました。入力した数値が加算されますが、前の数値を検証する方法がわかりません。
static void Main(string[] args)
{
const int QUIT = -1;
string inputStr;
int inputInt = 0;
do
{
Console.Write("Type a number (type -1 to quit): ");
inputStr = Console.ReadLine();
bool inputBool = int.TryParse(inputStr, out inputInt);
if (inputBool == true)
inputInt += inputInt;
Console.WriteLine("Sum of the past three numbers is: {0}", inputInt);
} while (inputInt != QUIT);
}
無数のエントリがある可能性があるため、配列の適切な使用方法がわかりません。