Changes between Version 11 and Version 12 of ControlSystems/SoftwareTeam/Training/GettingStarted/IntroJava
- Timestamp:
- Oct 1, 2019, 11:11:36 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ControlSystems/SoftwareTeam/Training/GettingStarted/IntroJava
v11 v12 102 102 * 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! 103 103 104 == Functions/Methods104 == !Functions/Methods 105 105 All 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: 106 106 * a name