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 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…
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…
C1 Min Read LetuscrackonJune 10, 2024 Product – Swap Unit Digits The program must accept two integers X and Y as the input. The program must print the product of X and Y after swapping their unit digits as…
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…
C1 Min Read LetuscrackonJune 7, 2024 Matrix Unit Digit Swap The program must accept an integer matrix of size R*C, where C is even and swap the unit digits of the elements in columns 1 and 2, then 3 and…
Python1 Min Read LetuscrackonJune 6, 2024 Submatrix – Unit Digit Corner Submatrix – Unit Digit Corner: The program must accept an integer matrix of size R*C and a digit D as the input. The…
C Java Kickstart Python1 Min Read LetuscrackonJune 6, 2024 Remove Unit Digit The program must accept a number and remove the unit digit. Note: The number is greater than 9. Example Input/Output 1:Input:102 Output:10…
C Java Kickstart Python1 Min Read LetuscrackonJune 5, 2024 Print Unit Digit The program must accept a number and print its unit digit. Example Input/Output 1:Input:72 Output:2 Example Input/Output 2:Input:65 Output:5…