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

新手开车!!!

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 on_off =false ;

            foreach (int x in num)

            if(x%7==0)

            {

                on_off = true;

                break;

            }

            if(on_off)

            {

                Console.Write("有7的整倍数");

            }

            else

            {

                Console.Write("没有7的整倍数");

            }

        }

    }

}


正在回答

1 回答

foreach(int x in num)
{
    if(x%7 == 0)
    {
        on_off = true;
        break;
    }
    
    if(on_off)
    {
        Console.Write("有7的整倍数");
    }
    else
    {
        Console.Write("没有7的整倍数");
    }
}


2 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

新手开车!!!

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