Java Strings Introduction

  • + 0 comments

    Solution in Java

    import java.io.*;
    import java.util.*;
    
    public class Solution {
    
        public static void main(String[] args) {
            
            Scanner sc=new Scanner(System.in);
            String A=sc.next();
            String B=sc.next();
    
    
            int total = A.length()+B.length();
            System.out.println("" + total);
            
            //Just printing the total without using a new variable
            //System.out.println("" +(A.length()+B.length()));
            
            if(A.charAt(0) > B.charAt(0)){
                System.out.println("Yes");
            }else{
                System.out.println("No");
            }
            /*We create a new string. We use substring and convert the first
            letter of the string and then we add the rest of the string
            */
            
            String cap_A = A.substring(0,1).toUpperCase() + A.substring(1);
            String cap_B = B.substring(0,1).toUpperCase() + B.substring(1);
    
    
            System.out.println(cap_A+" "+ cap_B);
        }
    }