哈哈,这样也行!

来源:4-10 编程练习

qq_月亮天使_0

2019-12-26 10:36

for(int x=1;x<=7;x++)

            {

                for(int y=1;y<=7;y++)

                {

                    if(x==y||x+y==8)

                    {

                       Console.Write("o"); 

                    }

                    else

                    {

                        Console.Write(".");

                    }

                }

                Console.WriteLine();

            }


写回答 关注

4回答

  • weixin_慕用3579805
    2020-01-18 15:11:21
                for (int y = 1; y <= 7; y++)
                {
                    for (int x = 1; x <= 7; x++)
                    {
                        if (x == y || x == 8 - y)
                        {
                            Console.Write("O");
                            continue;
                        }
                        Console.Write(".");
                    }
                    Console.WriteLine();//换行
                }


  • 慕设计7217822
    2020-01-07 12:28:31

    using System;

    using System.Collections.Generic;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {

                for (int y = 1; y <= 7; y++)

                {

                    for (int x = 1;x<=7; x++)

                    {

                        if (x + y == 8)

                        Console.Write("O");

                        

                        else if (x - y == 0)

                        Console.Write("O");

                        

                        else

                        Console.Write('.');

                    }

                    Console.WriteLine();//换行

                } 

                

                

            }

        }

    }


  • 慕神0130706
    2020-01-01 16:04:23

     for(int y=1;y<=7;y++)
                {
                    for(int x=1;x<=7;x++)
                    {
                        if(x==y||x==7-(y-1))
                        Console.Write('O');
                        else
                        Console.Write('.');
                       
                    }
                Console.WriteLine();
                 
                }

  • 慕工程5175188
    2019-12-28 17:20:54

    or(int x=1;x<=7;x++)

                {

                    for(int y=1;y<=7;y++)

                    {

                        if(x==y||x+y==8)

                        {

                           Console.Write("o"); 

                        }

                        else

                        {

                            Console.Write(".");

                        }

                    }

                    Console.Write("\n");

                }


C#开发轻松入门

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

254119 学习 · 1459 问题

查看课程

相似问题