Difference between revisions of "Beginner Java Exercises"

From WLCS
(AddSquares)
Line 10: Line 10:
 
# Your program should output the minimum, the median, the maximum, and the average of the three numbers. Please make your output pretty.
 
# Your program should output the minimum, the median, the maximum, and the average of the three numbers. Please make your output pretty.
  
=== AddSquares ===
+
=== AddEvens ===
 
# Create a Java class named AddEvens.  
 
# Create a Java class named AddEvens.  
 
# Create a local integer variable in the main method and prompt the user for its value
 
# Create a local integer variable in the main method and prompt the user for its value
 
# The program will output the sum of all the even numbers from 0 through the number you hardcoded. (HINT: use a loop)
 
# The program will output the sum of all the even numbers from 0 through the number you hardcoded. (HINT: use a loop)

Revision as of 13:46, 20 May 2009

OddOrEven

  1. Create a class named OddOrEven
  2. Prompt the user for an integer
  3. Print out to the user if the number is odd or even

NumberFun

  1. Create a class named NumberFun
  2. Declare three local variables in your main method, name them x, y, and z
  3. Prompt the user for x, y, and, z
  4. Your program should output the minimum, the median, the maximum, and the average of the three numbers. Please make your output pretty.

AddEvens

  1. Create a Java class named AddEvens.
  2. Create a local integer variable in the main method and prompt the user for its value
  3. The program will output the sum of all the even numbers from 0 through the number you hardcoded. (HINT: use a loop)