Multiples Learn programming C#

Lesson:

Flow Control


Exercise:

Multiples


Objetive:

Create a C# program to display on the screen the numbers from 1 to 500 that are multiples of both 3 and 5. (Hint: Use the modulo operator to check for divisibility by both 3 and 5.)


Code:

using System;
public class Exercise28
{
    public static void Main()
    {
        int i = 1;

        while (i <= 500)
        {
            if ((i % 3 == 0) && (i % 5 == 0))
                Console.Write("{0} ", i);

            i++;
        }
    }
}

'Multiples 3 and 5 for

using System;
'Multiples
public class Exercise28
{
    public static void Main()
    {
        int i = 1;

        for (i = 1; i <= 500; i++)
        {
            if ((i % 3 == 0) && (i % 5 == 0))
                Console.Write("{0} ", i);
        }
    }
}

'Multiples 3 and 5 for step 15

using System;
'Multiples
public class Exercise28
{
    public static void Main()
    {
        for (int i = 15; i <= 500; i += 15)
            Console.Write("{0} ", i);
    }
}

Juan A. Ripoll - Systems Tutorials and Programming Courses ©  All rights reserved.  Legal Conditions.