3 Replies - 949 Views - Last Post: 15 August 2012 - 09:28 AM Rate Topic: -----

#1 silven87   User is offline

  • New D.I.C Head

Reputation: 0
  • View blog
  • Posts: 4
  • Joined: 06-August 12

how to change lowercase to uppercase

Posted 15 August 2012 - 09:14 AM

I am trying to turn a lowercase character into an uppercase character. The program will prompt the users to enter a character then it will display the character as is then will convert it into an uppercase character if need be.

char aChar;
System.out.println("enter a char");
aChar = (char)System.in.read();
System.in.read(); System.in.read(); //absorbs enter key.
System.out.println(aChar);
if(Character.isLowerCase(aChar));
	Character.toUpperCase(aChar);
System.out.println(aChar);



how should I fix this so it will turn the lowercase into an uppercase?

Is This A Good Question/Topic? 0
  • +

Replies To: how to change lowercase to uppercase

#2 macosxnerd101   User is offline

  • Games, Graphs, and Auctions
  • member icon




Reputation: 12800
  • View blog
  • Posts: 45,992
  • Joined: 27-December 08

Re: how to change lowercase to uppercase

Posted 15 August 2012 - 09:17 AM

Character.toUpperCase() returns an uppercase character. You have to assign the result of this method back to the variable. What happens is that the value stored in the variable is copied and passed to the method. So only a copy is changed, and not the value the variable stores.
Was This Post Helpful? 1
  • +
  • -

#3 silven87   User is offline

  • New D.I.C Head

Reputation: 0
  • View blog
  • Posts: 4
  • Joined: 06-August 12

Re: how to change lowercase to uppercase

Posted 15 August 2012 - 09:27 AM

Thank you, I changed the program a little to this

char aChar, bChar;
System.out.println("enter a char");
aChar = (char)System.in.read();
System.in.read(); System.in.read(); //absorbs enter key.
System.out.println(aChar);
if(Character.isLowerCase(aChar));
	bChar = Character.toUpperCase(aChar);
System.out.println(bChar);



It now works perfectly.
Was This Post Helpful? 0
  • +
  • -

#4 macosxnerd101   User is offline

  • Games, Graphs, and Auctions
  • member icon




Reputation: 12800
  • View blog
  • Posts: 45,992
  • Joined: 27-December 08

Re: how to change lowercase to uppercase

Posted 15 August 2012 - 09:28 AM

Glad I could help! :)
Was This Post Helpful? 0
  • +
  • -

Page 1 of 1