Skip to main content

#Logic How to convert String Characters lower to upper and upper to low...

How to convert String Characters.  lower to upper and upper to lower


How to Convert all the String character Upper and lower. If String character is lower than convert Upper If it is Upper than you have to convert a lower. I am going to introduce it is a very simple and easy way. String Conversion is very easy through the toUpperCase() and toLowerCase(); Method But I am going to do this Question without using the Inbuilt method in the class.

You have to do this Only For logical coding Question.


So, Finally, I am going to do this Question step-by-step if you want to watch videos than you can watch. In these videos, I discuss this question in a very simple and easy way.

  1. You have to take one class with the main method.   
            class Test{

                public static void main(){
                   //your logic
              }
         }


    2. After that you can start the Writing the Logic Make sure that you have knowledge for logic than only you can write the logic.
    
         import java.util.Scanner;
        class Test{

                public static void main(){
                   Scanner sc=new Scanner(System.in);
                    String name=sc.next();
                   //1.Method
                     String s=name.toLowerCase(name);  
                    if(name.equals(s)) {
                              s=s.toUpperCase();
                            System.out.println(s); 
                      }
                 else{
                             System.out.println(s);
                   }
              }
         }

 Convert Lowercase to Uppercase in java and Uppercase to Lowercase without using the built-in method?

Coding Part:

import java.util.*;

class Nit{

  public static void main(String args[]){ 

         Scanner sc=new Scanner(System.in);  

         String s=sc.next();   

         String s1="";

               System.out.println("Original:"+s);  

            for(int i=0;i<s.length();i++){    

             char ch=s.charAt(i);

int a=(int)ch;

if(a>=65&&a<=97){

              a=a+32;

  }

else{      

             a=a-32;

           }

          s1=s1+(char)a;

       }   

    System.out.println("Modified String:"+s1);
 }

}


Output:

prince

Original: prince

Modified String: PRINCE

Press any key to continue . . .

   
           

Comments

Post a Comment

Popular posts from this blog

Difference between Traditional programming languages and object-oriented programming languages..?

 What are Traditional programming languages and object-oriented programming languages..? or Difference between Traditional programming language  and object-oriented programming language Here....what is Traditional programming language and object-oriented programming language..? or Difference between Traditional programming language to help you make the new concepts, you are learning            as a beginner to  become a Master in any programming it's really very most important: Traditional programming language 1.Traditional computer programming has been around for more than a      century, with the first known computer program dating back to the mid-1800s.  2.Traditional Programming refers to any manually created program     that uses input data and runs on a computer to produce the output. 3.But for decades now, an advanced type of programming has revolutionized     business, particularly in ...

Top 50 HTML Interview Question (Most popular in the interview) | important html interview question

😀  Hello everyone. As you all know that to build a software project there are 3 Major categories to develop.😂 1.Front End  2.Middle Ware 3.Back End To crack the interview in front-end technology am going to give top FAQs which take place in your interview.so... Let's start now. TOPMOST FAQ's IN HTML   The first question raised by the interviewer is 1)What is HTML? HTML is a HyperText Markup Language. It is used for the creation and display of attractive, interactive, and dynamic web pages. By Tim Berners Lee's father of web environment. 2)What is the importance of Doctype in HTML? ​It is written at the top of the HTML document.​It is not a tag.​It tells the browser about the HTML version. 3)Define a TAG. ​A Tag or Element is said to be the text placed between Left angular brace " <" and right angular brace " >".   Syntax :   < .......... >    :     < html>   Do you know there are two types of ...

Top 100 Logical Question in java | Written test exam question | Logical programming question paper in java to crack the written test exam.

                                  The written  test exam question     If you want to crack the written test exam like TCS , INFOSYS , and WIPRO than you want these questions. this question is very useful for you if you are in college. before any drive for MNC  company you are readily forgiven the exam of this company so, this is for you. This question is very useful for developing logical skills in the programming language. If you want to become a good logical and standard coder than definitely this video for you don't miss this question. As you know logic is the power of the world if you have logic you can solve and find the solution to any type of problem. So, just focus on the logic noting else.         List of Question :       1. Write a Java program to print 'Hello' on screen and then print your name on a separate line. ...