Saturday, November 13, 2021

A program which will input a name and check whether its is a unique name or not.in Java

 A program which will input a name and check whether its is a unique name or not.in Java

  1. import java.util.Scanner;  
  2. public class UniqueNumberExample1  
  3. {  
  4. public static void main(String args[])  
  5. {  
  6. int r1, r2, number, num1, num2, count = 0;  
  7. Scanner sc = new Scanner(System.in);  
  8. System.out.print("Enter the number you want to check: ");  
  9. //reading a number from the user  
  10. number = sc.nextInt();  
  11. //num1 and num2 are temporary variable  
  12. num1 = number;  
  13. num2 = number;  
  14. //iterate over all digits of the number  
  15. while (num1 > 0)  
  16. {  
  17. //detrmins the last digit of the number      
  18. r1 = num1 % 10;  
  19. while (num2 > 0)  
  20. {  
  21. //finds the last digit  
  22. r2 = num2 % 10;  
  23. //comparing the last digit  
  24. if (r1 == r2)  
  25. {  
  26. //increments the count variable by 1      
  27. count++;  
  28. }  
  29. //removes the last digit from the number  
  30. num2 = num2 / 10;  
  31. }  
  32. //removes the last digit from the number  
  33. num1 = num1 / 10;  
  34. }  
  35. if (count == 1)  
  36. {  
  37. System.out.println("The number is unique.");  
  38. }  
  39. else  
  40. {  
  41. System.out.println("The number is not unique.");  
  42. }  
  43. }  
  44. }  

No comments:

Post a Comment