请帮忙看看

来源:5-8 编程练习

慕UI7584436

2020-08-13 15:22

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};

            //请完善代码,判断数组中有没有7的整倍数

            bool has7 = false;

            for(int i=0;i<num.length;i++)

            {

                if(num[i] %7==0)

                {

                    has7 = true;

                    break;

                }

                if(has7)

                {

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

                }

                else

                {

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

                }

            }

        }

    }

}


写回答 关注

1回答

  • qq_慕的地1446569
    2020-08-13 16:00:08

    把两行打印写在for循环外面就行

C#开发轻松入门

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

254118 学习 · 1459 问题

查看课程

相似问题