Write a Java program to capitalize the first letter of each word in a sentence
Sample Output:
Input a Sentence: the quick brown fox jumps over the lazy dog. The Quick Brown Fox Jumps Over The Lazy Dog.
import java.util.*; public class Exercise58 { public static void main(String[] args){ Scanner in = new Scanner(System.in); System.out.print("Input a Sentence: "); String line = in.nextLine(); String upper_case_line = ""; Scanner lineScan = new Scanner(line); while(lineScan.hasNext()) { String word = lineScan.next(); upper_case_line += Character.toUpperCase(word.charAt(0)) + word.substring(1) + " "; } System.out.println(upper_case_line.trim()); } }
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Sample Output:
need an explanation for this answer? contact us directly to get an explanation for this answer