Skip to content

Commit ef797ee

Browse files
committed
Task 16 of c functions and nested loops
1 parent fc5977e commit ef797ee

File tree

3 files changed

+48
-0
lines changed

3 files changed

+48
-0
lines changed
12 KB
Binary file not shown.
12 KB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
#include <stdio.h>
2+
3+
/**
4+
* main - print the 98 fibonacci numbers.
5+
* Return: 0
6+
*/
7+
8+
int main(void)
9+
{
10+
int count;
11+
unsigned long i, j, k;
12+
unsigned long m, n, p, carry;
13+
14+
count = 0;
15+
16+
i = 0;
17+
j = 1;
18+
for (count = 1; count <= 91; count++)
19+
{
20+
k = i + j;
21+
i = j;
22+
j = k;
23+
printf("%lu, ", k);
24+
}
25+
m = i % 1000;
26+
i = i / 1000;
27+
n = j % 1000;
28+
j = j / 1000;
29+
while (count <= 98)
30+
{
31+
carry = (m + n) / 1000;
32+
p = (m + n) - carry * 1000;
33+
k = (i + j) + carry;
34+
m = n;
35+
n = p;
36+
i = j;
37+
j = k;
38+
if (p >= 100)
39+
printf("%lu%lu", k, p);
40+
else
41+
printf("%lu0%lu", k, p);
42+
if (count != 98)
43+
printf(",");
44+
count++;
45+
}
46+
putchar('\n');
47+
return (0);
48+
}

0 commit comments

Comments
 (0)