Create N-bonacci.cpp #1306
Open
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. |
math/N-bonacci.cpp
Outdated
*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) { |
@neha-hasija17 hey! where did you find the problem statement? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
This Pull Request is for HacktoberFest 2020
Description of Change
Checklist
Notes: