Python1 Min Read LetuscrackonApril 22, 2026 Multiply N with Unit Digit The program must accept a positive integer N and print the value of N multiplied with it’s unit digit. Boundary Condition(s):1 <= N…
Python1 Min Read LetuscrackonApril 18, 2026 Next Multiple with Unit Digit D A positive integer N and a digit D are passed as input to the program. The program must print the first multiple of N (which is greater…
Python1 Min Read LetuscrackonApril 16, 2026 Interchange First Digit Two positive integers X and Y are passed as the input to the program. The program must interchange the first digits of X and Y and print them…
Python1 Min Read LetuscrackonFebruary 12, 2026 Sum – Unit Digit 3 or 6 The program must accept N integers as the input. The program must print the sum of integers having the unit digit as 3 or 6 as the…
Python1 Min Read LetuscrackonJanuary 28, 2026 Print Xth Digit from Last Two integers N and X are given as input. The program must print the Xth digit of N from last. Boundary Condition(s):1 <= N <= 9999999991…
C1 Min Read LetuscrackonJanuary 25, 2026 Unit Digit – Ascending and Descending The program must accept two integers as the input. The program must sort the two integers in ascending order based on their unit digit and…
C Java Python1 Min Read LetuscrackonJanuary 23, 2026 Replace Max Digit – Two Integers The program must accept two integers X and Y as the input. The program must replace all the occurrences of the maximum digit in X with the…
C1 Min Read LetuscrackonDecember 13, 2025 Numbers with Unit Digit Numbers with Unit DigitGiven two positive integers A and B and a digit U, the program must print all the integers from A to B (inclusive of A…
C1 Min Read LetuscrackonNovember 2, 2025 Digit In Tenth Position The program must accept a positive integer N and print the digit in the tenth position. Input Format:The first line denotes the value of…
C1 Min Read LetuscrackonSeptember 28, 2025 Nature of Digit in Position Given a number ‘n’ and a position; Write an algorithm and subsequent ‘C’ program to Check if the ‘p-th’ Digit, Starting from left-most digiit…