请大佬指正一下哪有有误一直报错
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
//声明整型数组,保存一组整数
int[] num = new int[] { 3,34,43,2,11,19,30,55,20};
bool s=false;
//请完善代码,判断数组中有没有7的整倍数
for(int x=0;x<num.length;x++)
{
if(num[x]%7==0)
{
s=true;
break;
}
}
if(s)
{
Console.Write("有7的整倍数");
}
else
{
Console.Write("没有7的整倍数");
}
}
}
}