1 / 24

ACM 365

ACM 365. Week -2. Decision Structures.

hadar
Download Presentation

ACM 365

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


  1. ACM 365 Week -2 ACM 365 Course Notes

  2. Decision Structures if Statement - use this statement to execute a block of code when a condition is true (and another if the condition is not true) if...else Statement - use this statement to execute a block of code when a condition is true or to execute another block of code when a condition is false elseif Statement - a combination of if and else. it extends an if statement to execute a different statement in case the original if expression evaluates to FALSE. Unlike else, it will execute that alternative expression only if the elseif conditional expression evaluates to TRUE. ACM 365 Course Notes

  3. Decision Structures ACM 365 Course Notes

  4. Decision Structures ACM 365 Course Notes

  5. Decision Structures ACM 365 Course Notes

  6. Decision Structures ACM 365 Course Notes

  7. Switch Statement ACM 365 Course Notes

  8. Switch Statement ACM 365 Course Notes

  9. Operators ACM 365 Course Notes

  10. Looping Structures - While ACM 365 Course Notes

  11. Looping Structures – do While ACM 365 Course Notes

  12. Looping Structures – for loop ACM 365 Course Notes

  13. Looping Structures – for loop ACM 365 Course Notes

  14. Looping Structures – for each ACM 365 Course Notes

  15. Looping Structures – for each ACM 365 Course Notes

  16. Looping Structures – for each ACM 365 Course Notes

  17. Reusing Code and Functions ACM 365 Course Notes

  18. Reusing Code and Functions ACM 365 Course Notes

  19. Functions ACM 365 Course Notes

  20. Functions ACM 365 Course Notes

  21. Functions ACM 365 Course Notes

  22. Functions ACM 365 Course Notes

  23. Functions ACM 365 Course Notes

  24. Functions Do it with a FUNCTION ACM 365 Course Notes

More Related