Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. hetbrouwertje

    Pascal's Triangle

    As I told you, I got stuck from the start. This is what I've got so far... PROGRAM Pascalstriangle; VAR counter,ammount:INTEGER; PROCEDURE GiveRow(i:INTEGER); BEGIN WRITELN('Row',i); END; BEGIN WRITE('Give number of rows: '); READLN(ammount); FOR counter:=1 TO ammount DO...
  2. hetbrouwertje

    Pascal's Triangle

    Hello, some time ago I started to learn Turbo Pascal. Now I've got a complex question, for me that is. I want to write a program that prints out Pascal's Triangle. But I'm stuck since I started to figure out how to write this program. The program has to ask the user how many rows it has to...

Part and Inventory Search

Back
Top