Beginner Java Exercises

From WLCS
Revision as of 13:53, 29 November 2010 by Admin (talk | contribs) (Reverted edits by Ysukivewug (talk) to last revision by Admin)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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)