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

大神帮忙看一下这个为什么在Visual studio不输出打印结果呢 程序没有报错---会了谢谢

大神帮忙看一下这个为什么在Visual studio不输出打印结果呢 程序没有报错---会了谢谢

C#
慕尼黑0172299 2015-10-14 15:05:16
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 hasNub = false;            for (int i = 0; i <= num.Length; i++)            {                if (num[i] % 7==0)                {                    hasNub = true;                    break;                }                else                {                    continue;                }            }            if (hasNub)            {                Console.WriteLine("有7的整数倍");            }            else            {                Console.WriteLine("没有7的整数倍");            }        }    }}
查看完整描述

2 回答

?
慕尼黑0172299

TA贡献2条经验 获得超0个赞

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;


namespace ConsoleApplication4

{

    class Program

    {

        static void Main(string[] args)

        {

            //声明整型数组,保存一组整数

            int[] num = new int[] { 3, 34, 43, 2, 11, 19, 30, 55, 20 };

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

            bool hasNub = false;

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

            {

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

                {

                    hasNub = true;

                    break;

                }

                else

                {

                    continue;

                }

            }

            if (hasNub)

            {

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

            }

            else

            {

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

            }

        }

    }

}


查看完整回答
反对 回复 2015-10-14
?
慕前端0648451

TA贡献2条经验 获得超0个赞

至少应该输出一句话吧

查看完整回答
反对 回复 2015-10-14
  • 2 回答
  • 0 关注
  • 2505 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信