1 / 5
Common Errors in Homework Assignment 4
50 likes | 144 Vues
Avoid common pitfalls in HW4 - check maxv function, input formats, matrix alignment, and proper score calculation.
Télécharger la présentation
Common Errors in Homework Assignment 4
An Image/Link below is provided (as is) to download presentation
Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author.
Content is provided to you AS IS for your information and personal use only.
Download presentation by click this link.
While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server.
During download, if you can't get a presentation, the file might be deleted by the publisher.
E N D
Presentation Transcript
PR 1 • The maxv function should only return the largest value, not the index for the largest value. No output should be done in this function.
PR 2 • Input is in degree, while the sin/cos/atan2 accept radians • atan vs. atan2 • atan return value from [–PI/2,PI/2] • atan2 return value from [-PI,PI]
PR 3 • You should format your matrix well • Either with space between elements • Or using setw function to align the elemnts
PR 4 • First ask the user to roll or not, then call the rand function. • There are three types of score • Score of each roll • Score of each round • Total score
More Related