C Java Python1 Min Read LetuscrackonJune 12, 2024 Even Sum of Unit Digit and Tenth Digit The program must accept two integers X and Y as the input. The program must print the integers having the sum of the tenth…
Python1 Min Read LetuscrackonJune 11, 2024 Print – Only Three Digit Numbers The program must accept a string S and print only the three digit numbers in it (in the order of occurrence). The most significant digits can…
Python1 Min Read LetuscrackonJune 11, 2024 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 LetuscrackonJune 11, 2024 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 LetuscrackonJune 11, 2024 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 LetuscrackonJune 10, 2024 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 LetuscrackonJune 10, 2024 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 LetuscrackonJune 10, 2024 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 LetuscrackonJune 10, 2024 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 LetuscrackonJune 9, 2024 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…