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 dencom 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: *

  • Users: anthony68
  • Content: Threads
  • Order by date
  1. anthony68

    crt,dos,graph units won't work in freepascal or BPW

    with all the programs i download from this site keep getting errors that the units not found. i declared the units dir in directory d:\fpc\..\units but keep getting errors. please help
  2. anthony68

    read matrix write matrix in pascal read runtime error!!!

    program matrix (y); uses wincrt; const ad=7; aw=12; type dayindex = 1..ad; weekindex= 1..aw; oa = array [weekindex,dayindex] of Integer; var y: file of integer; w: Integer; o: oa; r: weekindex; c: dayindex; begin {fill matrix } assign(y,'y'); reset(y)...
  3. anthony68

    make table with 12 var in pascal

    i want to make a table with 12 var but do not know how to begin. Can you help me how my body needs i want the output to look like this 1 2 3 4 5 6 7 8 etc 1 2 3 etc 2 3 4 3 etc 4 5 6 7 etc then i want to find the values with combined are over 75 something like this if...
  4. anthony68

    error message in statement

    program zetels; uses Wincrt; var win,cda, pvda, sp: real; begin writeln ('cda'); readln(cda); writeln('pvda'); readln(pvda); writeln('sp'); readln(sp); procedure coalitie; begin if cda+pvda+sp< 75 then writeln('coalitienietmogelijk'); end; begin if (cda > pvda) and (cda > sp) then...

Part and Inventory Search

Back
Top