User profile: tyvoiax

User info
User name:tyvoiax
History
Joined:
Number of posts:3
Latest posts:

Poblems in pythagorean triples
/*This is the correct solution.*/ #include<iostream> using namespace std; int main () { for (i...

Poblems in pythagorean triples
You should use a double for loop. Below is a corrected code. #include<iostream> using namespace std...

Help me fix this
remove the last semicolon in the for loop. for (int x=1; x<=year; x++;) should be for (int x=1; x<=...