Skip to content

Instantly share code, notes, and snippets.

@Chris0123
Last active November 2, 2017 12:10
Show Gist options
  • Save Chris0123/2f8c670d03aaa2a3b9b25c8a40c7a219 to your computer and use it in GitHub Desktop.
Save Chris0123/2f8c670d03aaa2a3b9b25c8a40c7a219 to your computer and use it in GitHub Desktop.
#include <iostream>
using namespace std;
int main()
{
int a = 1 , b = 1;
cout<< a <<"\n";
cout<< b <<"\n";
while(a + b < 100) {
cout<< a + b << "\n";
b = a + b;
a = b - a;
}
return 0;
}
@Chris0123
Copy link
Author

229 42 游原睿

@Chris0123
Copy link
Author

Chris0123 commented Nov 2, 2017

Wow!!!!How amazing is this!!!It's........unbelievable!Fantasty!Wonderful!It made me shocked!It made me compire!!!!!How nice is it?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment