Want to become a Vibe Coder? Join Vibe Coding Training here
x
C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Convert the String to Upper Case
WhatsApp
Alagunila Meganathan
Aug 08
2016
973
0
1
ConvertInUpperCase.r
public
class
ConvertInUpperCase{
public
static
void
main(String args[]){
String r =
"Flower"
;
System.out.println(
"String is : "
+ r);
String upper = r.toUpperCase();
System.out.println(
"String in uppercase letter: "
+ upper);
}
}
java
String
Up Next
Convert the String to Upper Case