METHODS FIRST ASSIGNMENT (EVEN AND ODD CHECKR)
Temperature Q2 import java.util.Scanner; public class Temperature { static void validation(Scanner input){ while(!input.hasNextInt()) { System.out.println("YOU have enter a letter where a number is expected"); System.out.println("Please try again"); input.next(); } } static int celsius(int a){ int d = a + 32; return d * 9/5; } static int fahr(int a ){ int d = a -32; return d * 5/9; } public static void main(String[] args) { Scanner input = new Scanner(System.in); System.out.println("============================================"); System.out.println(" TEMPERATURE CONVERTER"); System.out.println("============================================="); System.out.println(" "); System.out.println("Enter the number or the value of the temperature you...