Talk:Pascal's triangle: Difference between revisions

From Rosetta Code
Content added Content deleted
(New page: Could somebody please upload an program which produces Pascal's triangel using C# ?)
 
(Right Output Format, or isosceles?)
Line 1: Line 1:
== Right Output Format? ==
Could somebody please upload an program which produces Pascal's triangel using C# ?
Thw task bdescription says the tringle looks like this:
<pre> 1
1 1
1 2 1
1 3 3 1</pre>

And yet, some examples are showing the easier to construct:
<pre>1
1 1
1 2 1
1 3 3 1</pre>

I think that maybe all example output should follow the task description format of an isosceles triangle. --[[User:Paddy3118|Paddy3118]] 08:59, 27 December 2009 (UTC)

Revision as of 08:59, 27 December 2009

Right Output Format?

Thw task bdescription says the tringle looks like this:

   1
  1 1
 1 2 1
1 3 3 1

And yet, some examples are showing the easier to construct:

1
1 1
1 2 1
1 3 3 1

I think that maybe all example output should follow the task description format of an isosceles triangle. --Paddy3118 08:59, 27 December 2009 (UTC)