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 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 Count of Digits Inverted in Their Position The program must accept an integer N as the input. The task is to count and print the number of digits in N whose position (from the rightmost…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Create a Number from Non-Repeating Digits The program must accept an integer N as the input. The task is to form a new number by using only the non-repeating digits in N. If no such…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Common Digits in Two Numbers The program must accept two integers A and B as the input. The task is to print all the unique digits that are present in both numbers. The…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Create Number from Multiplication of Digits The program must accept an integer N as the input. The task is to form a new number by multiplying each of the digits of N. If any of the…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Count Digits That Are Both Prime and Even The program must accept an integer N as the input. The task is to count and print the number of digits that are both prime and even in the…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Count Digits That Are Fibonacci Numbers 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 Fibonacci numbers. If no…