Skip to content

Commit 18786a2

Browse files
authored
Prints some number of Fibonacci sequence's numbers
1 parent e4caeb8 commit 18786a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fibonacci.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ using namespace std;
44

55
int main()
66
{
7-
int n = 0; // number of digits to print
7+
int n = 0; //number of digits to print
88
cout << "Type how many digits of the Fibonacci sequence you'd like to get: " << endl;
99
cin >> n;
1010

@@ -23,4 +23,4 @@ int main()
2323
cout << f_sequence[j] << " ";
2424
}
2525
return 0;
26-
}
26+
}

0 commit comments

Comments
 (0)