可以运行,也输出了“没有7的整数倍”,为什么不能通过?
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 has7 = false;
foreach (int x in num)
{
if (x % 7 == 0)
{
has7 = true;
break;
}
}
if (has7)
Console.WriteLine("有7的整数倍");
else
Console.WriteLine("没有7的整数倍");
}
}
}