Hello all fri c# | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 2

Hello all fri c#

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SoloLearn { class Program { static void DrawPyramid(int n) { for (int i=1; i<=n; i++) { for (int j=i; j<=n; j++) { Console.Write(" "); } for (int k=1; k<=2*i-1; k++) { Console.Write("*"+" "); } Console.WriteLine(); } } static void Main(string[] args) { DrawPyr

14th Nov 2017, 12:59 PM
Peou Sountana
Peou Sountana - avatar
1 Answer
0
Please don’t advertise in QA.
29th Nov 2019, 7:42 AM
SQrL
SQrL - avatar