דצמ.08

משולש פסקל

משולש פסקל

להדפיס משלולש פסקל בקוד c#

 
static void Main(string[] args) { Console.WriteLine("The Pascal's Triangle"); Console.WriteLine("Enter the number of lines:"); int num = Convert.ToInt32(Console.ReadLine()); for (int n = 0; n < num; n++) { Console.Write("".PadLeft(num - (n +1), (char)32)); for (int k = 0; k < n + 1; k++) { int currNumber = triangle(n, k); Console.Write(" " + currNumber.ToString()); } Console.Write(Environment.NewLine); } Console.ReadKey(); } public static int triangle(int n, int k) { int retorno; if ((k == 0) || (k == n)) retorno = 1; else { retorno = triangle(n - 1, k - 1) + triangle(n - 1, k); } return retorno; }
תגיות:
שתף את הסיפור הזה:

תגובות(0)

השאירו תגובה

קפטצ'ה לא מתאימה

תגובה