Showing posts with label Character Upper Case. Show all posts
Showing posts with label Character Upper Case. Show all posts

Saturday, 9 August 2014

Write a Program in Java which convert the String in Upper case

Structure of the Problem Requirements 

In this problem we will learn how to convert a string characters into Upper case. The Program will received the input from the user and save them in a string . After this a String function toUppercase is applied and display it on the Prompt. Here is the Source code of the problem which help you in better understanding .

Source Code 


package com.ancodingpoint.www;

import java.util.Scanner;


public class Upper_Case
{
public static void main(String[] args)
{
            Scanner input = new Scanner (System.in);
            String story ="";
           System.out.println(" Enter Your Story Here .....!");
            story = input.nextLine();
            story = story.toUpperCase();
            System.out.println(story);
        }
}

Output of the Program


Java String Programming
String Conversion