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

VS2015可以通过,网上提交通不过?

VS2015都通过了,这里却通不过??这是为何?

提问者:shuaigeyanglin 2016-01-25 15:24

个回答

  • 一筐
    2016-11-27 20:22:49

    vs可以通过,说明代码没问题!!但是这个网页的答案,是有要求格式的

  • dream01
    2016-02-03 22:16:33

    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,49,30,55,20};

                bool hasSeven=false;

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

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

                        hasSeven=true;

                        break;

                    }

                }

                if(hasSeven==true){

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

                     

                }

             

                

                   else{

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

                    }

                }

                    

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

                

            }

        }



  • 烈酒满喉
    2016-01-26 18:33:52

    让我看一下你VS中的代码吧。