How to resolve the algorithm Sum multiples of 3 and 5 step by step in the Ring programming language

Published on 12 May 2024 09:40 PM

How to resolve the algorithm Sum multiples of 3 and 5 step by step in the Ring programming language

Table of Contents

Problem Statement

The objective is to write a function that finds the sum of all positive multiples of 3 or 5 below n. Show output for n = 1000. This is is the same as Project Euler problem 1. Extra credit: do this efficiently for n = 1e20 or higher.

Let's start with the solution:

Step by Step solution about How to resolve the algorithm Sum multiples of 3 and 5 step by step in the Ring programming language

Source code in the ring programming language

see sum35(1000) + nl
 
func sum35 n
     n = n - 1
     return(3 * tri(floor(n / 3)) + 
	    5 * tri(floor(n / 5)) - 
	    15 * tri(floor(n / 15)))

func tri n
     return n * (n + 1) / 2

  

You may also check:How to resolve the algorithm Move-to-front algorithm step by step in the Perl programming language
You may also check:How to resolve the algorithm Repeat a string step by step in the RapidQ programming language
You may also check:How to resolve the algorithm K-means++ clustering step by step in the Raku programming language
You may also check:How to resolve the algorithm Range expansion step by step in the 11l programming language
You may also check:How to resolve the algorithm Nim game step by step in the Java programming language