diff --git a/Solutions/Even_Fibonacci_numbers.cpp b/Solutions/Even_Fibonacci_numbers.cpp new file mode 100644 index 0000000..9fc0731 --- /dev/null +++ b/Solutions/Even_Fibonacci_numbers.cpp @@ -0,0 +1,23 @@ +#include + +using namespace std; + +int main(){ + + long a=1,b=2,c=0,s=0; + long n=4000000; + + + + while(c