Skip to content

Commit f8df7b0

Browse files
authoredFeb 22, 2023
Create 101-natural.c
1 parent 29a4a60 commit f8df7b0

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
 
+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
#include <stdio.h>
2+
3+
/**
4+
* main - Prints the sum of all multiples of 3 or 5 up to 102
5+
* Return: Always (Success)
6+
*/
7+
int main(void)
8+
{
9+
int i, z = 0;
10+
11+
while (i < 1024)
12+
{
13+
if ((i % 3 == 0) || (i % 5 == 0))
14+
{
15+
z += i;
16+
}
17+
18+
i++;
19+
}
20+
21+
printf("%d\n", z);
22+
return (0);
23+
}

0 commit comments

Comments
 (0)
Please sign in to comment.