Three Five Multiples Coderbyte Solution

0

Have the function ThreeFiveMultiples(num) return the sum of all the multiples of 3 and 5 that are below num. 

For example: if num is 10, the multiples of 3 and 5 that are below 10 are 3, 5, 6, and 9, and adding them up you get 23, so your program should return 23. The integer being passed will be between 1 and 100.

Three Five Multiples Coderbyte Solution in Java


import java.util.Scanner;


public class ThreeFiveMultiples {
int ThreeFiveMultiples(int num) {
int sum = 0;
for (int i = 3; i < num; i++) {
if (i % 3 == 0 || i % 5 == 0) {
sum += i;
}
}

return sum;

}

public static void main (String[] args) {
// keep this function call here
Scanner s = new Scanner(System.in);
ThreeFiveMultiples c = new ThreeFiveMultiples();
System.out.print(c.ThreeFiveMultiples(100));
}
}

Post a Comment

0 Comments
* Please Don't Spam Here. All the Comments are Reviewed by Admin.
Post a Comment (0)
Our website uses cookies to enhance your experience. Learn More
Accept !