1
我已經要求用戶輸入金額,但我正努力將它們存儲到一個數組中。這是我迄今爲止所做的。請幫助。我是一名初學者。我想從用戶那裏得到所需的整數數量並將它們存儲到一個數組中
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
int intNum;
Console.WriteLine("How many integers must be stored in the program?");
intNum = Convert.ToInt32(Console.ReadLine());
}
}
}