Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. Commands for compliation and execution:
  2.  
  3. Problem 1:
  4. g++ -ansi -pedantic -Wall main_1.cxx polynomial_1.cxx -o polynomial
  5. ./polynomial
  6.  
  7. Problem 2:
  8. g++ -ansi -pedantic -Wall main_2.cxx -o polynomial
  9. ./polynomial
  10.  
  11. Comments:
  12. -Coding this way does not, in fact, have a learning curve. It is still hard.
  13. -Part 1, after much trial and error, finally worked once I reorganized and figured out that faulty math was the main culprit to things not compiling.
  14. -Part 2 was made easier by Part 1, as it was mostly light editing
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement