C Java Kickstart Python1 Min Read LetuscrackonJuly 27, 2025 Absolute Difference Multiples The program must accept two integers N1 and N2 as the input. The program must print the first 10 multiples of their…
C Java Kickstart Python1 Min Read LetuscrackonJuly 20, 2025 Positive or Negative Based Multiples Accept an integer A as the input. If A is a positive integer then print the first five multiples of the unit digit of A as the…
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…