资源简介
循环输出图像,生成星号金字塔
代码片段和文件信息
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个文件信息
- 上一篇:C# 获取和设置文件夹属性(创建修改时间、只读属性等)
- 下一篇:C#启动控制面板
相关资源
- C# 显示磁盘目录信息
- 解析
- 即系
- IconPanel ToolTip
- CSDN small
- 生成8位密码程序
- .net 2.0 List 去重 类似 distinct()函数
- c# 简单的借书/还书
- DCOM授权
- sina授权登录
- 计算你人生 剩余几个月
- 经纬度在范围内外判断
- VS批注批量修改CommentHelper
- 远控系列软件2(远控服务器端)
- 控制动物的奔跑与停止
- UART_veryhuo.com
- mysql生成随机码
- C# 简易计算器源码
- c# 取消 Alt+F4(关闭窗口)源码
- C# 石头剪刀布入门级控制台源码
- C# 仿记事本(可用作备注/书签)
- C#(switch/if)入门级
- 将Excel数据分解到多个文本文件
- 将文本文件数据分解到Excel中的不同数
- 为一个Excel文件创建多个工作表
- 将数据利用Excel生成图表
- 将多个Excel文件进行自动汇总
- 自动用递增变化的数据填充Excel
- 读取多个Word文档文件到Excel同一数据
- 利用Excel对数据进行多列排序
评论
共有 条评论