代码有错。

来源:5-8 编程练习

qq_这东西真麻烦_0

2018-04-04 16:28

 bool has7 = false;

            foreach(int x in num)

            {

                if(x%7 == 0)

                {

                    has7 =true;

                    break;

                }

            }

            if (has7)

            {Console.WrtieLine("有7的整数倍");}

            else

            {Console.WrtieLine("没有7的整数倍");}

这段代码有错,请帮我找找

写回答 关注

3回答

  • 慕雪1509670
    2018-09-18 11:11:06

    Console.WrtieLine 单词拼错了,WriteLine

  • 慕前端4767672
    2018-09-13 21:41:20

    你用foreach,所以定义的x只能输出,不能赋值

    我用的for

    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 x=false;

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

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

                   {x=true;

                   break;}

                   

                }

                if(x)

                Console.WriteLine("you");

                else

                Console.WriteLine("mei you");

                

            }

        }

    }


  • qq_这东西真麻烦_0
    2018-04-04 16:38:58

    Write  Write

C#开发轻松入门

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

254119 学习 · 1459 问题

查看课程

相似问题