C Java Python2 Min Read LetuscrackonJune 12, 2024 Digit Appearing Most After First Occurrence The program must accept an integer N as the input. The task is to find the digit that appears the most number of times after its first…
C Java Python2 Min Read LetuscrackonJune 12, 2024 Create Two Numbers Using Higher and Lower Halves of Each Digit The program must accept an integer N as the input. The task is to form two new numbers by using the upper half and lower half of each digit of…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Create a Number by Doubling Each Digit The program must accept an integer N as the input. The task is to create a new number by doubling each digit of N and return the new number.…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Create New Number Removing First and Last Digit The program must accept an integer N as the input. The task is to form a new number by removing the first and the last digit of N. If N is a…
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 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 Python2 Min Read LetuscrackonJune 12, 2024 Adding a Digit to Maintain Ascending Order The program must accept a number N as input. Determine if it’s possible to add at most one digit (0-9) anywhere in the number to make…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Count of Digits That Are Less Than Previous Digit 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 less than their immediate…
C Java Python2 Min Read LetuscrackonJune 12, 2024 Reframe with Hundredth Digit The program must accept an integer N and a sum value X (sum of unit digit, tenth digit and hundredth digit of N) as the…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Add Square of Each Digit to the Number Given a number as the input, compute the new number by adding the square of each of its digits to the original number. If the input is not a…