About 51 results
Open links in new tab
  1. python - 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.

  2. 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 …

  3. 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

  4. How to make a script that prints the multiples of a number using a for ...

    Jun 10, 2020 · The multiples of number is when you add that number to it self multiple times. range () generates a sequence of integer numbers. It can take one, two, or three parameters:

  5. 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). …

  6. Javascript function for finding multiples of a number

    Create a function called multiplesOf. It will accept two arguments, the first will be an array of numbers, the second will be a number. The function should return a new array that is made up of every

  7. C Program that prints Multiples of 3, 5 and both, professional style ...

    Sep 29, 2020 · I wrote my first simple C program that prints multiples of 3 , 5 and both 3 and 5 instead of the number, from 1 to 100. It works. I know this program can be written in million different ways. How …

  8. 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; …

  9. 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 …

  10. how to determine the multiples of numbers in java

    Oct 10, 2010 · read 2 numbers and determine whether the first one is a multiple of second one.