Group
C# Flow Control Basics
Objective
The objective of this exercise is to write 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.)
Example C# Exercise
Show C# Code
// First and Last Name: John Doe
using System;
namespace MultiplesOfThreeAndFive
{
class Program
{
// Main method to execute the program
static void Main(string[] args)
{
// Iterate through numbers from 1 to 500
for (int i = 1; i <= 500; i++)
{
// Check if the number is divisible by both 3 and 5
if (i % 3 == 0 && i % 5 == 0)
{
// If divisible by both, display the number
Console.WriteLine(i);
}
}
}
}
}
Output
15
30
45
60
75
90
105
120
135
150
165
180
195
210
225
240
255
270
285
300
315
330
345
360
375
390
405
420
435
450
465
480
495