Advertisement
Guest User

Untitled

a guest
Nov 14th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. package com.scalefocus;
  2.  
  3. public class Main {
  4.  
  5. public static void main(String[] args) {
  6. boolean var = true;
  7. String str = Boolean.toString(var);
  8. String output = str.substring(0, 1).toUpperCase() + str.substring(1);
  9.  
  10. System.out.println(output);
  11.  
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement