Project Euler #218: Perfect right-angled triangles

  • + 0 comments

    Solve On your own Because it took me over 7 hours 6mins i am willing to give answer in C++ simple one. Don't waste time :)

    #include <iostream>
    using namespace std;
    
    int main() {
        int q;
        cin>>q;
        while(q--) 
            cout<<0<<endl;
        return 0;
    }