C Java Python2 Min Read LetuscrackonJune 12, 2024 Create Two Numbers from Odd and Even Digits The program must accept an integer N as the input. The program should create two new numbers – one using the odd digits and another…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Division of Largest and Smallest Digits The program must accept an integer N as the input. The task is to divide the largest digit by the smallest digit in N and print the result.…
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 Divide Number by Sum of its Digits The program must accept an integer N as the input. The task is to compute and print the quotient obtained after dividing N by the sum of its…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Count of Groups with Same Consecutive Digits The program must accept an integer N as the input. The program must count the number of groups in the number where the same digit appears…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Divide Number into Equal Size Groups and Sum Them The program must accept an integer N and divide it into groups of equal size (of 2 or 3 or 4 etc). Then, the program should sum up these…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Digits That Remain Same After Squaring The program must accept an integer N as the input. The task is to determine and print the digits in N that remain the same after squaring. If…
C Java Python2 Min Read LetuscrackonJune 12, 2024 Compare Sum of Odd Positioned and Even Positioned Digits The program must accept an integer N as the input. The task is to compare the sum of the digits at odd positions and even positions in the…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Create Number from Outer to Center Digits The program must accept an integer N as the input. The program should create a new number by rearranging the digits of N from outer to center.…
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…