1 / 4
Verify max
40 likes | 333 Views
Verify max. {T} if (a > b) { c = a; }else { c = b; } {c = max ( a,b )}. Verify multiplication. {a > 0} c = 0; y = b ; x = a; while (x > 0) { c = c + b; x = x - 1; } {c = a*b}. There will be make-up tutorial today (conducted by Dr. Aquinas) 6pm COM2-04-02.
Download Presentation
Verify max
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
Verify max {T} if (a > b) { c = a; }else { c = b; } {c = max (a,b)}
Verify multiplication {a > 0} c = 0; y = b; x = a; while (x > 0) { c = c + b; x = x - 1; } {c = a*b}
There will be make-up tutorial today (conducted by Dr. Aquinas) 6pm COM2-04-02
More Related