
public class Quiz1
{
    public static void main(String[] args) 
    {
        char c;

        c = 'q';    // Change this and demo (try '0')
        
        System.out.println(c);
        
        if ( 'a' <= c && c <= 'z' )
            c = (char) (c - 'a' + 'A');
           
        System.out.println(c);
    }
}  
