home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / forth / compiler / fpc / tutor / l4p180 < prev    next >
Text File  |  1990-07-15  |  2KB  |  50 lines

  1.        ╔════════════════════════════════════════════════════╗
  2.        ║ Lesson 4 Part 180  F-PC 3.5 Tutorial by Jack Brown ║
  3.        ╚════════════════════════════════════════════════════╝
  4.  
  5.         ┌──────────────────────────────────────────────┐
  6.         │  Some examples of the square root operator.  │
  7.         └──────────────────────────────────────────────┘
  8.  
  9. First we use SQRT which takes a 32 bit argument and leaves
  10. a 16 bit square root.
  11.  
  12. 256. SQRT . <enter> 16  ok
  13. 20000. SQRT . <enter> 140  ok
  14. 2000000. SQRT . <enter> 1414  ok
  15.  
  16. Next we use .SQRT which takes a 16-bit number and displays its
  17. square root to two decimal places.
  18.  
  19.  3 .SQRT <enter> 1.72  ok
  20. 49 .SQRT <enter> 7.00  ok
  21. 10 .SQRT <enter> 3.16  ok
  22.  
  23. Below is a sample run of the new and improved polynomial program.
  24. We will use the first set of test data given at the beginning of
  25. Lesson 4 Part 15.
  26.  
  27. POLY
  28. Enter number of data points. > 4
  29.  
  30. Point     X       Y
  31.   1     > 8     > 4
  32.   2     > 6     > 1
  33.   3     > 2     > 1
  34.   4     > 5     > 4
  35. AREA =     10.5
  36. PERIMETER = 14.84  ok
  37.  
  38.  
  39. If you have trouble with this problem don't worry about it.
  40. If everything seems easy then you are not learning anything!
  41. Give it you best attempt and then ask for help if you need it and
  42. we will provide you with some hints.
  43.  
  44. Well... dear students,  that just about wraps up Lesson 4.
  45. We did want to look at F-PC's memory map (a map of where important
  46. system variables and data structures are kept) but we will wait until
  47. next time.
  48.  
  49. This is the end of Lesson 4.
  50.