1
Answer

loop that identify values

Photo of anndy smaals

anndy smaals

6y
540
1
a for loop that identifies all the values between the lowerBounds and the upperBounds inclusive that are evenly divisible by 5 (e.g. 5, 10, 15)
and adds them to the variable sum.
 
using System;

namespace HelloWorld
{
class Program
{
static void Main(string[] args)
{
int lowerBounds = 1;
int upperBounds = 1000;
int sum = 0;


Console.WriteLine(sum);
}
}

Answers (1)