How to find the sum of all the multiples of 3 or 5 below 1000 in VB.NET

2 Answers

0 votes
Imports System

Class Program
	Public Shared Sub Main()
        Dim sum As Integer = 0

        For i As Integer = 1 To 1000 - 1
            If i Mod 3 = 0 OrElse i Mod 5 = 0 Then
                sum += i
            End If
        Next

        Console.WriteLine("The sum of all multiples of 3 or 5 below 1000 is: " & sum)
    End Sub
End Class



' run:
'
' The sum of all multiples of 3 or 5 below 1000 is: 233168
'

 



answered Apr 14, 2025 by avibootz
0 votes
Imports System
Imports System.Linq

Class Program
	Public Shared Sub Main()
        Dim sum As Integer = Enumerable.Range(0, 1000).Where(Function(x) x Mod 3 = 0 OrElse x Mod 5 = 0).Sum()
			
        Console.WriteLine(sum)
    End Sub
End Class



' run:
'
' 233168
'

 



answered Apr 14, 2025 by avibootz
...