Changes between Version 11 and Version 12 of ControlSystems/SoftwareTeam/Training/GettingStarted/IntroJava


Ignore:
Timestamp:
Oct 1, 2019, 11:11:36 PM (6 years ago)
Author:
David Albert
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ControlSystems/SoftwareTeam/Training/GettingStarted/IntroJava

    v11 v12  
    102102* There are three types of [https://www.geeksforgeeks.org/loops-in-java/ loops in Java] including while, for, and do loops.  Read about them and try a few!
    103103
    104 == Functions/Methods
     104== !Functions/Methods
    105105All modern programming languages allow you to extend the language by creating new command words.  In Java, a new word is called a function.  Functions are like machines that have an input and an output; you put something(s) into the function execute the function and the function does something that might include providing an output.  Every Java function has 4 primary characteristics:
    106106* a name