用c#实现金字塔图案

时间:2012-07-03 19:33:43
【文件属性】:

文件名称:用c#实现金字塔图案

文件大小:15KB

文件格式:RAR

更新时间:2012-07-03 19:33:43

c# 金字塔

using System; using System.Collections.Generic; using System.Text; namespace 金字塔 { class jinzita { public void fa() { Console.WriteLine("请输入一个一到九的整数"); int n = 0; n = Convert.ToInt32(Console .ReadLine ()); Console.WriteLine("您输入的数是:"+n); //遍历行 for (int hang = 1; hang <= n;hang++ ) { //留空格 for (int count = 1; count <= n - hang;count++ ) { Console.Write(" "); } //写左边数字 for (int i = 1; i <= hang;i++ ) { Console.Write(i+" "); } if(hang==1) { Console.WriteLine(""); } else { //写右边数字 for (int j = hang - 1; j >= 1;j-- ) { Console.Write(j+" "); if(j==1) { Console.WriteLine(""); } } } } } } class Program { static void Main(string[] args) { jinzita da = new jinzita(); da.fa(); Console.ReadLine(); } } }


【文件预览】:
金字塔
----金字塔.suo(9KB)
----金字塔()
--------bin()
--------obj()
--------Properties()
--------Program.cs(1KB)
--------金字塔.csproj(2KB)
----金字塔.sln(916B)

网友评论