C Java Python LetuscrackonAugust 9, 2026 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 Python LetuscrackonAugust 9, 2026 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 Python LetuscrackonAugust 8, 2026 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 Python LetuscrackonAugust 8, 2026 Combine Two Numbers by Alternating Digits The program must accept two integers A and B as the input. The task is to combine the numbers by alternating the digits. If one number runs…
C Java Python LetuscrackonAugust 7, 2026 Average of Prime Digits The program must accept an integer N as the input. The task is to calculate the average of all the prime digits present in the number and…
C Java Python LetuscrackonAugust 7, 2026 Check if All Digits Are Perfect Squares The program must accept an integer N as the input. The task is to check whether all the individual digits in the number are perfect squares.…
C Java Python LetuscrackonAugust 6, 2026 Spilt Array – Equal Sum The program must accept an integer array of size N as the input. The program must print YES if it is possible to split the array…
C Java Python LetuscrackonAugust 6, 2026 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…
C Java Python LetuscrackonAugust 5, 2026 Numbers and Asterisks – V Pattern The program must accept an integer N as the input. The program must print the desired pattern as shown in the Example Input/Output…
C Java Python LetuscrackonAugust 5, 2026 Except the Nth Position The program must accept a string value S and an integer N as the input. The program must remove the characters which are…