
Create a list of multiples of a number - Stack Overflow
List of Multiples Create a Python 3 function that takes two numbers (value, length) as arguments and returns a list of multiples of value until the size of the list reaches length.
Determining multiples of 3 or 5 in python - Stack Overflow
Jan 22, 2015 · 0 I'm relatively new to python and thus trying to set myself up running some simple algorithms. Here's the first problem from project euler, although there are other solutions available to …
math - finding multiples of a number in Python - Stack Overflow
Jan 28, 2013 · 0 How to calculate the first n multiples of a given number x, in the compact python's lambda notation
Finding the multiples of 3 in a given range - Stack Overflow
Mar 28, 2022 · I wrote a code that can find the multiples of 3 of a given number, but I want to make it so that it will only print out the multiples of 3 in a given range. How can I do that?
algorithm - How to find the sum of all the multiples of 3 or 5 below ...
2 The problem with your first solution is that it double-counts multiples of 15 (because they are multiples of both 3 and 5). The problem with your second solution is that it doesn't count 999 (a multiple of 3). …
java - Count Multiples - Stack Overflow
Mar 6, 2021 · I have been assigned to write a java program for class that counts multiples. The program takes three integers as input: low, high, x. The program then outputs the number of multiples of x …
Returning multiples of a number in Python - Stack Overflow
Returning multiples of a number in Python Asked 11 years, 9 months ago Modified 7 years, 10 months ago Viewed 13k times
sql - Lookup multiples values from another table - Stack Overflow
Feb 2, 2026 · Lookup multiples values from another table [closed] Asked 6 days ago Modified 6 days ago Viewed 124 times
python - Multiples of 10 in a list - Stack Overflow
Mar 31, 2022 · I am currently doing an assignment in my intro level CS class and just need a smidge of help. They are asking me to write a program that reads a list of integers and determines if it has; …
How to find multiples of a number in a range without loop?
Oct 1, 2021 · a=10,b=20,c=3 for example I need program to find how many multiples do c=3 have that are between a,b or b,a? how to make that program without using loop? in this example with this input …