为了账号安全,请及时绑定邮箱和手机立即绑定

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

        }

    }

}


正在回答

1 回答

是整倍数不是整数倍

1 回复 有任何疑惑可以回复我~
#1

小小疾飞

兄弟,牛逼啊,我搞了好久不知道为什么。
2019-07-20 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

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

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信