Take out a piece of paper. We’ll be programming on paper.
Write Java code for the following problems.
Write a public static subroutine sayHi that has one parameter name a String that prints out ‘Hello name’.
Write a public static subroutine countDown that has one parameter limit an int that counts down from limit to 0 by fives and prints the numbers as it goes.
Write a private static subroutine evenNumbers with two parameters, start an int and end an int, that prints out the even numbers from start to end.