Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Create sentencePalindrome.java
  • Loading branch information
Scarlet-Coder authored Oct 2, 2020
commit ad2032cf1b5d616b6fcbd6dec6009c3e643d8a7c
61 changes: 61 additions & 0 deletions String/sentencePalindrome.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
/*
Print the palindrome words present in the sentence and its frequency.
*/


import java.util.*;
class sentencePalindrome
{
String str;
void accept()
{
Scanner sc=new Scanner(System.in);
System.out.println("Enter a sentence");
str=sc.nextLine();
str=str.toUpperCase();
}

boolean isPalin(String s)
{//checks if the word is Palindrome or not
int l=s.length();
String rev="";
for(int i=l-1; i>=0; i--)
{
rev=rev+s.charAt(i);
}
if(rev.equals(s))
return true;
else
return false;
}

void main()
{
accept();
char ch=str.charAt(str.length()-1);
if(ch=='.' || ch=='!' || ch=='?')
{
int freq=0;
StringTokenizer st=new StringTokenizer(str," .!?");
int c=st.countTokens();
for(int i=1; i<=c; i++)
{
String w=st.nextToken();
boolean r=isPalin(w);
if (r==true)
{
System.out.print(w+" ");
freq++;
}
}
System.out.println();
if(freq!=0)
System.out.println("NUMBER OF PALINDROMIC WORDS =”+ freq);
else
System.out.println("NO PALINDROMIC WORDS");
}
}
else
System.out.println("INVALID INPUT");
}
}