C Java Python2 Min Read LetuscrackonJune 12, 2024 Digit That Appears the Least Number of Times The program must accept an integer N as the input. The task is to determine the digit that appears the least number of times in N. If there…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Check Palindrome Nature of a Number The program must accept an integer N as the input. The task is to check whether the number is a palindrome. If the number is a palindrome, the…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Count of Digits Inverted in Their Position The program must accept an integer N as the input. The task is to count and print the number of digits in N whose position (from the rightmost…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Create a Number from Non-Repeating Digits The program must accept an integer N as the input. The task is to form a new number by using only the non-repeating digits in N. If no such…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Common Digits in Two Numbers The program must accept two integers A and B as the input. The task is to print all the unique digits that are present in both numbers. The…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Create Number from Multiplication of Digits The program must accept an integer N as the input. The task is to form a new number by multiplying each of the digits of N. If any of the…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Count Digits That Are Both Prime and Even The program must accept an integer N as the input. The task is to count and print the number of digits that are both prime and even in the…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Count Zeroes Surrounded by the Same Digit The program must accept an integer N as the input. The task is to count the number of zeroes in the number which are surrounded by the same…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Append the Number’s Mirror Image to Itself The program must accept an integer N as the input. The task is to mirror the number and append it to the end of the original number. The…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Count Digits That Are Fibonacci Numbers The program must accept an integer N as the input. The task is to count and print the number of digits in N that are Fibonacci numbers. If no…