Datasets:

ArXiv:
License:
File size: 367 Bytes
c574d3a
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import java.util.Scanner;

/**
 * This program will capitalize the first character of the given word.
 */
public class CaptitalizeFirstChar {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String t = sc.next();
        System.out.print((t.charAt(0) + "").toUpperCase() + t.substring(1));
        sc.close();
    }
}