Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upCreate N-bonacci.cpp #1306
Create N-bonacci.cpp #1306
Conversation
This Pull Request is for HacktoberFest 2020
|
Code is not up to the repository standards. |
This Pull Request is for HacktoberFest 2020
|
Documentation is not up to the Doxygen guidelines. |
This Pull Request is for HacktoberFest 2020
|
Documentation is not up to the Doxygen guidelines. |
| *In this code we take N and M as input where M is the number of terms | ||
| *to be printed of the N-bonacci series | ||
| */ | ||
| void N_bonacci(int n,int m){ |
Co-authored-by: David Leal <halfpacho@gmail.com>
This Pull Request is for HacktoberFest 2020
|
@Panquesito7 please check it now, and let me know the error so I can resolve it asap. |
Co-authored-by: David Leal <halfpacho@gmail.com>
Co-authored-by: David Leal <halfpacho@gmail.com>
| while (t--) { | ||
| std::cout << "Enter the values of N and M : "; | ||
| std::cin >> n >> m; | ||
| N_bonacci(n, m); |
Panquesito7
Oct 18, 2020
Member
Please add self-test cases to ensure the algorithm works as expected.
| *In this code we take N and M as input where M is the number of terms | ||
| *to be printed of the N-bonacci series | ||
| */ | ||
| void N_bonacci(int n, int m) { |
Co-authored-by: David Leal <halfpacho@gmail.com>
Co-authored-by: David Leal <halfpacho@gmail.com>
Co-authored-by: David Leal <halfpacho@gmail.com>
9744e54
to
9acb16e
9acb16e
to
7070e79
| while (t--) { | ||
| std::cout << "Enter the values of N and M : "; | ||
| std::cin >> n >> m; | ||
| N_bonacci(n, m); |
| *In this code we take N and M as input where M is the number of terms | ||
| *to be printed of the N-bonacci series | ||
| */ | ||
| void N_bonacci(int n, int m) { |


This Pull Request is for HacktoberFest 2020
Description of Change
Checklist
Notes: