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.…
Python1 Min Read LetuscrackonJune 11, 2024 First M multiples of N The number N is passed as input. The program must print the first M multiples of the number Input Format:The first line denotes the value of…
C1 Min Read LetuscrackonJune 10, 2024 Characters at multiples of X Example Input/Output 1:Input:abcdexyzwqpoolj5 Output:eqj Explanation: The multiples of 5 are like 5, 10, 15,… So the characters in these…
C Java Kickstart Python1 Min Read LetuscrackonJune 7, 2024 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 LetuscrackonJune 7, 2024 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 LetuscrackonJune 6, 2024 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 LetuscrackonJune 5, 2024 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…