I am trying to write a fortran program to take an integer n and print out the first n rows of Pascal's triangle. The code I have so far:
PROGRAM PascalTriangle
IMPLICIT NONE
INTEGER i, n, j, ktemp, ktemp1, ktemp2, ktemp3, ktemp4, ktemp5
WRITE(6,*), "Enter a positive integer n:> "...