问答详情
源自:5-8 编程练习

可以运行,也输出了“没有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的整数倍"); 

        }

    }

}


提问者:weixin_慕函数4043115 2019-07-19 19:40

个回答

  • 慕容6369309
    2019-07-20 09:53:01

    是整倍数不是整数倍