C Java Python2 Min Read LetuscrackonJune 12, 2024 Double Every Prime Digit and Append to the Number The program must accept an integer N as the input. The task is to double the value of every prime digit in N and then append those values to N…
Python1 Min Read LetuscrackonJune 10, 2024 Double Array Values Given N integers, the program must double the values and print them. Input Format:First line contains NSecond line contains N integers…
C1 Min Read LetuscrackonJune 10, 2024 Double the Digits in Number Given a positive integer N, the program must print double the value for each of it’s digits. Boundary Condition(s): 1 <= N…
Python1 Min Read LetuscrackonJune 5, 2024 Unit Digit Double Unit Digit Double: Given an array of integers of size N, the program must print the twice the value of the unit digit of each element.…