Problem
Method Activity
1. Create a method called printOdd1to99 which prints odd numbers 1 through 99.
2. Create a method called printEven which takes an integer parameter and prints even numbers up to and including that number. For example, if the parameter is 8, then the method will print out: 2 4 6 8. If the number is less than 2 print out "Number is too small").
3. Create a method called printStringUCLC which takes a String parameter and prints out the String in uppercase and lowercase.
This needs to be done in Java oracle.