C Java Kickstart Python1 Min Read LetuscrackonMay 14, 2025 Ten Multiples The program must accept a number and print it’s first ten multiples. Example Input/Output 1:Input:3 Output:3 6 9 12 15 18 21 24 27 30…
Python4 Min Read LetuscrackonApril 23, 2025 Horizontal Zig-Zag Multiples Pattern Horizontal Zig-Zag Multiples Pattern: The program must accept an integer N as the input. The program must print the first N*N…
Python1 Min Read LetuscrackonMarch 18, 2025 Multiples of X, Y and X+Y Till U Multiples of X, Y and X+Y Till U: Given two numbers X and Y and an upper limit U, print multiples of X, Y and X+Y till U (not inclusive of U)…
Python1 Min Read LetuscrackonMarch 16, 2025 Multiply Multiples with Unit Digit Program In Python Multiply Multiples with Unit Digit: Two numbers X and Y are passed as the input where Y > X. Another number N is also passed as the input…
Python1 Min Read LetuscrackonMarch 13, 2025 Characters at Positions of Multiples of X Given a string S and an integer X as input, the program must print the characters at the positions of multiples of X until the last character…
Python1 Min Read LetuscrackonMarch 12, 2025 Sort Between Multiples Sort Between Multiples: The program must accept N integers and an integer X as the input. The program must sort the integers present between…
Python1 Min Read LetuscrackonNovember 18, 2024 Reverse Order – Print multiples of X from N to M Two numbers M and N are passed as the input. A number X is also passed as the input. The program must print the numbers divisible by X from N…
Python1 Min Read LetuscrackonNovember 5, 2024 Print except multiples of N Two numbers A and B are passed as input. A number N is also passed as the input. The program must print the numbers from A to B (inclusive of…
C Java Python2 Min Read LetuscrackonJune 12, 2024 Swap – Multiples of X and Y The program must accept N integers and two integers X and Y as the input. The program must swap the first occurring multiple of X and the last…
C1 Min Read LetuscrackonJune 11, 2024 Letters at position of multiples of a number A string of length L consists of characters is passed as input to the program. A given number N is also passed as the input to the program.…