import java.util.*;
public class sSone {
public static void main ( String[] args ) {
Scanner scan = new Scanner ( System.in );
System.out.print ( "Enter an integer number from 0-128" );
int inInt = scan.nextInt
PURPOSE: program that receives an integer number from 0-128 and displays the equivalent letter. For example, if the integer number is 97 the resulting letter is letter a.
REQUIREMENTS: don't use if statements, switch statements
PROBLEM: i don't know how can i work this thing out