• 大小: 0.04M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-02-25
  • 语言: C#
  • 标签:

资源简介

循环输出图像,生成星号金字塔

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace 循环输出图像
{
    class Program
    {
        static void Main(string[] args)
        {
            
            string strkg = null;//存储空格
            string xinghao = “*“;
            string input = Console.ReadLine();
            int int_input = int.Parse(input);//转换为int型
            int int_input1 = int_input;
            for (int i = 1; i <= int_input1; i++)//整体循环输入次数
           {
               
               for (int n = int_input -1; n > 0; n--)//输出空格
               {
                   strkg += “ “;
               }
              

               int_input = int_input - 1;
               Console.WriteLine(strkg + xinghao);
               strkg = null;
               xinghao = xinghao + “**“;
               

           }
            
            Console.ReadLine();
        }
       
    }
  
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1002  2014-09-26 22:36  循环输出图像\Backup\循环输出图像\Program.cs

     文件       1368  2014-09-26 21:03  循环输出图像\Backup\循环输出图像\Properties\AssemblyInfo.cs

     文件       2509  2014-09-26 21:03  循环输出图像\Backup\循环输出图像\循环输出图像.csproj

     文件        944  2014-09-26 21:03  循环输出图像\Backup\循环输出图像.sln

    ..A..H.     11264  2014-09-26 22:36  循环输出图像\Backup\循环输出图像.v12.suo

     文件      36082  2015-10-27 11:40  循环输出图像\UpgradeLog.htm

     文件       5120  2015-10-27 15:14  循环输出图像\循环输出图像\bin\Debug\循环输出图像.exe

     文件      13824  2015-10-27 15:14  循环输出图像\循环输出图像\bin\Debug\循环输出图像.pdb

     文件      22704  2015-10-27 21:53  循环输出图像\循环输出图像\bin\Debug\循环输出图像.vshost.exe

     文件        490  2013-06-18 20:28  循环输出图像\循环输出图像\bin\Debug\循环输出图像.vshost.exe.manifest

     文件       6600  2015-10-27 15:03  循环输出图像\循环输出图像\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache

     文件        608  2015-10-27 21:53  循环输出图像\循环输出图像\obj\Debug\循环输出图像.csproj.FileListAbsolute.txt

     文件       1414  2015-10-27 11:40  循环输出图像\循环输出图像\obj\Debug\循环输出图像.csprojResolveAssemblyReference.cache

     文件       5120  2015-10-27 15:14  循环输出图像\循环输出图像\obj\Debug\循环输出图像.exe

     文件      13824  2015-10-27 15:14  循环输出图像\循环输出图像\obj\Debug\循环输出图像.pdb

     文件        807  2015-10-27 15:14  循环输出图像\循环输出图像\Program.cs

     文件       1368  2014-09-26 21:03  循环输出图像\循环输出图像\Properties\AssemblyInfo.cs

     文件       2662  2015-10-27 11:40  循环输出图像\循环输出图像\循环输出图像.csproj

     文件       1023  2015-10-27 11:40  循环输出图像\循环输出图像.sln

    ..A..H.     11264  2014-09-26 22:36  循环输出图像\循环输出图像.suo

    ..A..H.     25600  2015-10-27 15:15  循环输出图像\循环输出图像.v12.suo

     目录          0  2014-09-26 21:03  循环输出图像\循环输出图像\obj\Debug\TempPE

     目录          0  2015-10-27 11:40  循环输出图像\Backup\循环输出图像\Properties

     目录          0  2015-03-23 13:37  循环输出图像\循环输出图像\bin\Debug

     目录          0  2015-10-27 15:14  循环输出图像\循环输出图像\obj\Debug

     目录          0  2015-10-27 11:40  循环输出图像\Backup\循环输出图像

     目录          0  2014-09-26 21:03  循环输出图像\循环输出图像\bin

     目录          0  2014-09-26 21:03  循环输出图像\循环输出图像\obj

     目录          0  2015-03-23 13:37  循环输出图像\循环输出图像\Properties

     目录          0  2015-10-27 11:40  循环输出图像\Backup

............此处省略5个文件信息

评论

共有 条评论