可以运行,也输出了“没有7的整数倍”,为什么不能通过?

来源:5-8 编程练习

weixin_慕函数4043115

2019-07-19 19:40

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的整数倍"); 

        }

    }

}


写回答 关注

1回答

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

    是整倍数不是整数倍

    小小疾飞

    兄弟,牛逼啊,我搞了好久不知道为什么。

    2019-07-20 14:21:45

    共 1 条回复 >

C#开发轻松入门

本门课程是C#语言的入门教程,将带你轻松入门.NET开发

254118 学习 · 1459 问题

查看课程

相似问题