Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

import java.util.

*;
class Position
{
public static void main(String args[])
{
Scanner sc = new Scanner(System.in);
String s,w="";
System.out.println("Enter any sentence");
s = sc.nextLine();
s = s+""; s= s.toUpperCase();
for(int i=0;i<s.length()-1;i++)
{
char ch = s.charAt(i);
if(ch!=' ')
w = w+ch;
else
for(int j=0;j<w.length()-1;j++)
{
char ch2= s.charAt(j);
if((int)w.charAt(j)-(int)w.charAt(j+1)==-1)
System.out.println(w);
}
w ="";
}
}
}

You might also like