欢迎来到天天文库
浏览记录
ID:42722109
大小:28.00 KB
页数:3页
时间:2019-09-21
《C# 打印实心菱形》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;namespace_2{classProgram{staticvoidMain(string[]args){Console.WriteLine("说明:n代表金字塔的行");Console.WriteLine();intn;//n:行Console.WriteLine("输入一个数(n):");n=int.Parse(Console.ReadLine());intd=n*2-1;//列
2、与行的关系式//上半部菱形for(inti=1;i<=n;i++)//行{for(intj=1;j<=n-i;j++)//输出每行左边的空格{Console.Write("");}for(intj=1;j<=i;j++)//输出每行的*{Console.Write("*");}Console.Write("");//换行}//下半部菱形for(inti=n;i>=1;i--){for(intj=n-i;j>=1;j--){Console.Write("");}for(intj=1;j<=i;j++){Console.Write("*"
3、);}Console.Write("");//换行}Console.ReadKey();}}}
此文档下载收益归作者所有