Array-promo

Question

program to print the reverse of the given sentence. 

Share code with your friends

Share on whatsapp
Share on facebook
Share on twitter
Share on telegram

Code

				
					
import java.util.Scanner;
public class reverseOfGivenSentence 
{  
    public static void main(String[] args)
    {  
        String sen="";
        char ch=' ';
        int i=0,len=0;
        Scanner sc = new Scanner(System.in);    
        
        System.out.println("Enter a sentence");   
        sen = sc.nextLine(); 
        
        
        len=sen.length();
        for(i=(len-1);i>=0;i--)
        {
            ch=sen.charAt(i);
            
            System.out.print(ch);
            
            
        }
        
    }  
}    

				
			

Coding Store

Leave a Reply

Your email address will not be published. Required fields are marked *