C Java Python1 Min Read LetuscrackonJune 11, 2024 Print Odd Even Negative Integer Count Accept N integers and print the count of odd, even and negative integer count as the output. Input Format:The first line contains N.The second…
C Java Python2 Min Read LetuscrackonJune 10, 2024 Integer – Count of Even Integers The program must accept an integer N as the input. The program must print the number of even integers that can be formed from the…
C1 Min Read LetuscrackonJune 9, 2024 Smallest Possible Odd Integer The program must accept an integer N as the input. The program must print the smallest possible odd integer using all the digits in N as the…
Java1 Min Read LetuscrackonJune 9, 2024 Subtract Largest Integer The program must accept N positive integers as the input. The program must subtract the integers from the largest integer among the N integers…
C1 Min Read LetuscrackonJune 9, 2024 Largest Possible Odd Integer The program must accept an integer N as the input. The program must print the largest possible odd integer using all the digits in N…
C1 Min Read LetuscrackonJune 9, 2024 Integer – Sum of Digits The program must accept an integer value N as a command line argument and print the sum of the digits in N.Example Input/Output…
C Python2 Min Read LetuscrackonJune 8, 2024 Smallest Palindromic Integer – Greater than X The program must accept N unique digits and an integer X as the input. The program must print the smallest palindromic integer, which is…
Python1 Min Read LetuscrackonJune 8, 2024 Split Integer – Range Sum The program must accept an integer N as the input. The program must print YES if it is possible to split the integer N…
Python1 Min Read LetuscrackonJune 7, 2024 Integer – Place Values The program must accept an integer N as the input. The program must print each place value in the integer N as the output. Boundary…
C Python1 Min Read LetuscrackonJune 7, 2024 Integer Triangle – Pattern The program must accept an integer N as the input. The program must print the desired pattern as shown in the Example Input/Output…