问答详情
源自:5-8 编程练习

请帮帮我看看吧

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;

         for(int=0;i<num.Length;

         i++)

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

         has7=true;

         break;

         if 

         (has7)

         Console.WriteLine("");

         else

         Console.WriteLine("");

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

            

        }

    }

}

http://img1.mukewang.com/60421b310001994013540796.jpg

提问者:WCCCC 2021-03-05 19:51

个回答

  • WCCCC
    2021-03-06 21:34:41

    自我debug已经完成:

    15行for循环中int=0是错误的,应为int i=0。

    接下来会因为我使用了break而报错,删除break;即可解决问题。