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…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Check for Increasing Order of Digits The program must accept an integer N as the input. The task is to check whether the digits in the number are in increasing order from left to…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Count of Digits That Are Less Than Previous Digit 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 less than their immediate…
C Java Python2 Min Read LetuscrackonJune 12, 2024 Combine Two Numbers by Alternating Digits The program must accept two integers A and B as the input. The task is to combine the numbers by alternating the digits. If one number runs…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Average of Prime Digits The program must accept an integer N as the input. The task is to calculate the average of all the prime digits present in the number and…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Check if All Digits Are Perfect Squares The program must accept an integer N as the input. The task is to check whether all the individual digits in the number are perfect squares.…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Difference – Sum of Odd and Even Digits Given a maximum of hundred digits as the input. The program must print the difference between the sum of odd and even digits as the output. If…
C1 Min Read LetuscrackonJune 12, 2024 C – Find the sum of odd digits in a given number. A number N is passed as input to the program. The program must find the sum of all odd digits present in the program and print the sum as the…
Java1 Min Read LetuscrackonJune 11, 2024 Digits Printer Given a number N. print all the digits of the number N in descending order. Boundary Condition:0 <= N <= 99999999999999 Input…