Datasets:

ArXiv:
License:
denisko's picture
cnanged dir structure and removed features file
3e77472
raw
history blame contribute delete
367 Bytes
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();
}
}