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,923 questions

51,856 answers

573 users

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

2 Answers

0 votes
#include <iostream>

int main() {
    int sum = 0;
    
    for (int i = 3; i < 10; i++) {
        if (i % 3 == 0 || i % 5 == 0) {
            std::cout << i << "\n";
            sum += i;    
        }
    }
  
    std::cout << "sum = " << sum;
}



/*
run:

3
5
6
9
sum = 23

*/

 



answered Oct 10, 2023 by avibootz
0 votes
#include <iostream>
 
unsigned int Sum(unsigned int n) {
    return (n * (n + 1)) / 2;
}
 
int main() {
    int below10 = 9;
 
    unsigned int sum = 3 * Sum((int)(below10 / 3)) + 5 * Sum((int)(below10 / 5)) - (3 * 5) * Sum((int)(below10 / 15));
     
    std::cout << "sum = " << sum;
}
 
 
 
/*
run:
 
sum = 23
 
*/

 

 



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

Related questions

2 answers 130 views
2 answers 136 views
3 answers 154 views
2 answers 156 views
2 answers 145 views
2 answers 118 views
2 answers 126 views
...