Pythagorean Triplet ! can't solve this question with any fixed formula?

Please Help–https://ide.codingblocks.com/s/182782--link to my code

if (n == 1 || n == 2)
System.out.println(-1);

    else if (n % 2 == 0) {

        // Calculating for even case
        System.out.println(((n * n) / 4) - 1 + " " + (((n * n) / 4) + 1));
    }

    else if (n % 2 != 0) {

        System.out.println((n * n - 1) / 2 + " " + (n * n + 1) / 2);

hope this will help u

1 Like

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.