新手开车!!!

来源:5-8 编程练习

hero_奥特曼

2019-03-12 11:08

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回答

  • 慕容7575610
    2019-03-13 15:13:24
    foreach(int x in num)
    {
        if(x%7 == 0)
        {
            on_off = true;
            break;
        }
        
        if(on_off)
        {
            Console.Write("有7的整倍数");
        }
        else
        {
            Console.Write("没有7的整倍数");
        }
    }


C#开发轻松入门

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

254118 学习 · 1459 问题

查看课程

相似问题