Im actually kinda embarassed to ask this question.
Why cant i get it to work?Code:#include <iostream> int main() { unsigned long long a = 1; unsigned long long b = 1; for (int i = 0; i < 45; i++) { a += b; std::cout << a/b << std::endl; b += a; std::cout << b/a << std::endl; } std::cin.get(); }


Reply With Quote

Bookmarks