Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,924 questions

51,857 answers

573 users

How to find the sum of all the multiples of 3 or 5 below 10 in C#

2 Answers

0 votes
using System;

public class Program
{
	public static void Main(string[] args)
	{
		int sum = 0;

		for (int i = 3; i < 10; i++) {
			if (i % 3 == 0 || i % 5 == 0) {
				Console.WriteLine(i);
				sum += i;
			}
		}

		Console.Write("sum = " + sum);
	}
}




/*
run:
  
3
5
6
9
sum = 23
  
*/

 



answered Oct 11, 2023 by avibootz
0 votes
using System;
 
public class Program
{
    public static int Sum(int n) {
        return (n * (n + 1)) / 2;
    }
 
    public static void Main(string[] args)
    {
        int below10 = 9;
 
        int sum = 3 * Sum((int)(below10 / 3)) + 5 * Sum((int)(below10 / 5)) - (3 * 5) * Sum((int)(below10 / 15));
 
        Console.Write("sum = " + sum);
    }
}
 
 
 
 
/*
run:
   
sum = 23
   
*/

 



answered Oct 11, 2023 by avibootz
edited Oct 13, 2023 by avibootz

Related questions

2 answers 136 views
3 answers 154 views
2 answers 156 views
2 answers 118 views
2 answers 130 views
2 answers 107 views
...