Monday, February 25, 2013

String To Upper Case



import javax.swing.JOptionPane;
public class we {
   
    public static void main(String[] args) {
       
        new we().stringToUpperCase();
    }
   
   
    public void stringToUpperCase() {
    
        String a ;
       
        a=JOptionPane.showInputDialog("Enter Uppercase letters");
       
       
        a = a.toUpperCase();
       
        JOptionPane.showMessageDialog(null,a,"answer",JOptionPane.PLAIN_MESSAGE);
          
        System.exit( 0 );
    }
           
   
}

No comments:

Post a Comment