这个程序怎么写

来源:4-10 编程练习

年5

2017-03-18 11:54

好难,58ccaf5c0001f58707201280.jpg

写回答 关注

1回答

  • 雨忆_雪沁渊
    2017-03-18 13:54:33
    已采纳

    using System;

    using System.Collections.Generic;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {   

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

                {

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

                    {

                        if (  a == i||a + i == 8) 

                        { Console.Write("O"); }

                        else { Console.Write("."); }

                    }Console.WriteLine();

                }        

            }

        }

    }


C#开发轻松入门

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

254118 学习 · 1459 问题

查看课程

相似问题