我是新手編程,我想要求用戶在C#中輸入10個數字,並列出10個數字甚至。到目前爲止,已經做到了這一點:如何向用戶詢問10個號碼並從10個號碼中選擇即使
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
//Jeyhun Mammadov
//maximum and minimun numbers
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
int[] numbs = new int[10];
for (int i = 0; i < 10; i++)
numbs[i] = Convert.ToInt32(Console.ReadLine());
if(numbs[i] % 2 = 0)
Console.ReadKey();
}
}
}
我不知道下一步採取,請我需要從別人一個這樣的幫助。由於
'麻木[I]%2 = 0'分配零值。你需要'=='代替'='。 – OnlineCop