About Get link Facebook X Pinterest Email Other Apps In this blog you will find all kinds of ebooks and you can read any book frim here or you can download any book in pdf format. Get link Facebook X Pinterest Email Other Apps Comments
palindrome of a String import java . util .*; class Str_Palindrome { public static void main ( String [] args ) { Scanner sc = new Scanner ( System . in ); String str = sc . next (); boolean flag = true ; for ( int idx = 0 ; idx < str . length (); idx ++){ if ( str . charAt ( idx )!= str . charAt ( str . length ()- idx - 1 )){ flag = false ; break ; ... Read more
Comments
Post a Comment