About 7,290,000 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. How can I comment multiple lines in Visual Studio Code?

    I cannot find a way to comment and uncomment multiple lines of code in Visual Studio Code. Is it possible to comment and uncomment multiple lines in Visual Studio Code using some …

  3. sql - Can I use multiple "with"? - Stack Overflow

    Nov 24, 2015 · Continue to help good content that is interesting, well-researched, and useful, rise to the top! To gain full voting privileges,

  4. math - finding multiples of a number in Python - Stack Overflow

    Jan 28, 2013 · 0 def multiples(n,m,starting_from=1,increment_by=1): """ # Where n is the number 10 and m is the number 2 from your example. # In case you want to print the multiples starting …

  5. SQL Statement using Where clause with multiple values

    Sep 8, 2016 · I have a table that has multiple rows with the following fields: PersonName SongName Status I want to use names selected from a multiple selection listbox, which I can …

  6. Find the sum of all the multiples of 3 or 5 below 1000

    If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23. I have the following code but the answer does not match. …

  7. How do I do multiple CASE WHEN conditions using SQL Server …

    You'll need to complete a few actions and gain 15 reputation points before being able to upvote. Upvoting indicates when questions and answers are useful. What's reputation and how do I …

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

  9. sorting - SQL multiple column ordering - Stack Overflow

    Jan 12, 2010 · How can I sort multiple columns in SQL and in different directions? For instance, 'column1' would be sorted descendingly and 'column2' ascendingly.

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