From 41f37e340df106b2154544b0d72478fa46d25db4 Mon Sep 17 00:00:00 2001 From: Aman1-coder <111993846+Aman1-coder@users.noreply.github.com> Date: Tue, 11 Oct 2022 13:38:54 +0530 Subject: [PATCH] Create EVEN OR ODD IN CPP --- EVEN OR ODD IN CPP | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 EVEN OR ODD IN CPP diff --git a/EVEN OR ODD IN CPP b/EVEN OR ODD IN CPP new file mode 100644 index 0000000..e7d184d --- /dev/null +++ b/EVEN OR ODD IN CPP @@ -0,0 +1,23 @@ +#include +using namespace std; + +int main() { + int t1 = 0, t2 = 1, nextTerm = 0, n; + + cout << "Enter a positive number: "; + cin >> n; + + // displays the first two terms which is always 0 and 1 + cout << "Fibonacci Series: " << t1 << ", " << t2 << ", "; + + nextTerm = t1 + t2; + + while(nextTerm <= n) { + cout << nextTerm << ", "; + t1 = t2; + t2 = nextTerm; + nextTerm = t1 + t2; + } + return 0; +} +Output