Write a Java-program to print duplicate characters from the string ?

Write a Java-program to print duplicate characters from the string ?

Program
import java.util.Scanner;
public class Main
{
	public static void main(String[] args) 
	{
		int x,y;
		String s;
		char ch[];
		Scanner sc=new Scanner(System.in);
		System.out.println("Enter String :");
		s=sc.nextLine();

		ch = s.toCharArray();
		for (x = 0; x < s.length(); x++)
		{	
	         for (y = x + 1; y < s.length(); y++)
	         {
	            if (ch[x] == ch[y]) {
	               System.out.print(ch[y] + " ");
	               break;
	            }
	         }
		}
	}

}
	
	

Output:

Enter String : sateesh
s e





More Questions


12 . Write a Java-program to Remove numbers in a given string ?
13 . Write a Java-program to print duplicate characters from the string ?
14 . Write a Java-program to print unique(distinct (or non-repeating characters) ) characters from the string ?
15 . Write a java program How to check if two strings are anagrams of each other?
16 . How to reverse a string in Java without using the reverse method ?
17 . How to count the occurrence of the given character in a string?
18 . How to check if a string is a palindrome?
19 . How to count the number of words in a given string sentence?
20 . How to reverse the words from the given string sentence?
21 . How to swap two strings without using the third variable?