Warning: preg_match(): Compilation failed: group name must start with a non-digit at offset 8 in /home/e5m7uo8vro0d/public_html/mediawiki/includes/MagicWord.php on line 860

Warning: preg_match(): Compilation failed: group name must start with a non-digit at offset 8 in /home/e5m7uo8vro0d/public_html/mediawiki/includes/MagicWord.php on line 860

Warning: preg_match_all(): Compilation failed: group name must start with a non-digit at offset 4 in /home/e5m7uo8vro0d/public_html/mediawiki/includes/MagicWord.php on line 834

Warning: Invalid argument supplied for foreach() in /home/e5m7uo8vro0d/public_html/mediawiki/includes/MagicWord.php on line 835

Warning: preg_replace(): Compilation failed: group name must start with a non-digit at offset 4 in /home/e5m7uo8vro0d/public_html/mediawiki/includes/MagicWord.php on line 839

Warning: preg_match_all(): Compilation failed: group name must start with a non-digit at offset 4 in /home/e5m7uo8vro0d/public_html/mediawiki/includes/MagicWord.php on line 834

Warning: Invalid argument supplied for foreach() in /home/e5m7uo8vro0d/public_html/mediawiki/includes/MagicWord.php on line 835

Warning: preg_replace(): Compilation failed: group name must start with a non-digit at offset 4 in /home/e5m7uo8vro0d/public_html/mediawiki/includes/MagicWord.php on line 839

Warning: preg_match_all(): Compilation failed: group name must start with a non-digit at offset 4 in /home/e5m7uo8vro0d/public_html/mediawiki/includes/MagicWord.php on line 834

Warning: Invalid argument supplied for foreach() in /home/e5m7uo8vro0d/public_html/mediawiki/includes/MagicWord.php on line 835

Warning: preg_replace(): Compilation failed: group name must start with a non-digit at offset 4 in /home/e5m7uo8vro0d/public_html/mediawiki/includes/MagicWord.php on line 839

Warning: preg_match_all(): Compilation failed: group name must start with a non-digit at offset 4 in /home/e5m7uo8vro0d/public_html/mediawiki/includes/MagicWord.php on line 834

Warning: Invalid argument supplied for foreach() in /home/e5m7uo8vro0d/public_html/mediawiki/includes/MagicWord.php on line 835

Warning: preg_replace(): Compilation failed: group name must start with a non-digit at offset 4 in /home/e5m7uo8vro0d/public_html/mediawiki/includes/MagicWord.php on line 839

Warning: preg_match(): Compilation failed: group name must start with a non-digit at offset 8 in /home/e5m7uo8vro0d/public_html/mediawiki/includes/MagicWord.php on line 860

Warning: preg_match(): Compilation failed: group name must start with a non-digit at offset 8 in /home/e5m7uo8vro0d/public_html/mediawiki/includes/MagicWord.php on line 860

Warning: preg_match(): Compilation failed: group name must start with a non-digit at offset 8 in /home/e5m7uo8vro0d/public_html/mediawiki/includes/MagicWord.php on line 860

Warning: preg_match(): Compilation failed: group name must start with a non-digit at offset 8 in /home/e5m7uo8vro0d/public_html/mediawiki/includes/MagicWord.php on line 860

Warning: preg_match(): Compilation failed: group name must start with a non-digit at offset 8 in /home/e5m7uo8vro0d/public_html/mediawiki/includes/MagicWord.php on line 860
The Knowledge Of Sauron's Minions - Huben's Wiki

The Knowledge Of Sauron's Minions

From Huben's Wiki
Jump to: navigation, search
(Revealing The Knowledge)
Line 61: Line 61:
 
# Print out the value of compute with the proper incantation. What have we wrought?
 
# Print out the value of compute with the proper incantation. What have we wrought?
 
# Look on my page for "References", and click on Math.  Explore therein and find the secrets of exponentiation and other precalculus functions.
 
# Look on my page for "References", and click on Math.  Explore therein and find the secrets of exponentiation and other precalculus functions.
 +
 +
==Multitudinous Variables==
 +
As yet we have examined only singular variables.  In mathematical lore, we often use variables that contain multitudes, as in matrices.  In Java, we have row matrices, called '''arrays'''.  Arrays can be of any type.  We specify an array of a type by placing square brackets '[]' after the type.
 +
* Add 'int[] anArray = {8, 2, 5};' to the variables at the top of RingWraith.
 +
In math, we would express this as:
 +
 +
anArray = [8 2 5]
 +
 +
In math, we would use subscripts to specify which of the numbers to select, subscripts from 1 to 3.  But '''in Java subscripts start at zero''' and '''subscripts are numbers within square brackets'''.
 +
* Add 'System.out.println( anArray[0] + anArray[1] + anArray[2] );' into main().  What does this do?
 +
* You might notice that the array was initialized to three values by placing the set of values in curly braces.  Where else have we used curly braces?
 +
* Add another value to the array by putting another number within the curly braces.
 +
* Change one of the array values by adding this line in main(): 'anArray[1] = -3;'.  Can you write a set of println() to show all the array values, and see which has changed?

Revision as of 09:32, 25 September 2012

Personal tools
translate