View Single Post
  #3 (permalink)  
Old 06-15-2007, 05:43 AM
anhzan
Posts: n/a
i thought pascal's triangle is this:

1
11
121
1331
14641
15101051

and you gotta be more specific on your question. what are the requirements for the program? is the program going to ask you enter a number and you have to create a pascal's triangle from the number?

for example:
Please enter a number: 3
Pascal's Triangle is:
1
121
12321

If that's what you want your program to do, here's some tips:
- use the number entered by the user to create an array with that many elements
- user a loop to store data in that array (first element contain 1, second element contain 2, etc)
- use another loop to print out pascal's triangle base on the stored values in your array

__________________

Digg this Post! Del.Icio.Us this Post! Technorati this Post! Furl this Post! Mister Wong this Post! Newsvine this Post! Spurl this Post! Reddit this Post! Netscape this Post!