大佬哪里错了?
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 hasSb=false;
for(int x=0;x<=num.Length;x++)
{
if(num[x]%7==0)
{
hasSb=true;
break;
}
}
if(hasSb)
{
Console.Write("有7的倍数");
}
else
{
Console.Write("没有7的倍数");
}
}
}
}