Skip to content

Tag Archives: root

Given two numbers N and K. The task is to check whether N is Kth power to any integer i.e., whether N can be expressed… Read More
Given two positive integers N and P. The task is to find the Nth root of P. Examples:  Input: P = 1234321, N = 2Output:… Read More
Given three integers A, B, and C representing the coefficients of a quadratic equation Ax2 + Bx + C = 0 and a positive integer… Read More
Given three integers A, B, and C representing the coefficients of a quadratic equation Ax2 + Bx + C = 0, the task is to… Read More
Given two positive integers N and K, the task is to check if the given integer N can be expressed as the product of K… Read More
Given the constants of quadratic equation F(x) = Ax2 + Bx + C as A, B, and C and an integer K, the task is… Read More
Given 5 integers say A, B, C, D, and E which represents the cubic equation , the task is to find the integral solution for this… Read More
Given three numbers A, B, C which represents the coefficients(constants) of a quadratic equation , the task is to check whether one root of the equation… Read More
Given three numbers A, B, C which represents the coefficients(constants) of a quadratic equation , the task is to check whether the roots of the equation… Read More
Content has been removed on Author’s request. Recommended Solve DSA problems on GfG Practice. Solve Problems My Personal Notes arrow_drop_up Save
Given the coefficients (constants) of a quadratic equation , i.e. a, b, and c; the task is to check whether roots of the equation represented by… Read More
Given a number N, the task is to write a C program to find the square root of the given number N. Examples:  Input: N… Read More
Given the number N, the task is to find the cube root using the log function.Examples: Input: N = 8 Output: 2.000000Input: N = 27 Output: 3.000000  … Read More
Given two integers N and K, the task is to find the Nth root of the K.  Examples:  Input: N = 3, K = 8 Output:… Read More
Given the roots of a cubic equation A, B and C, the task is to form the Cubic equation from the given roots.Note: The given… Read More

Start Your Coding Journey Now!