The assignment says:
Search: Use a while loop to find a solution to the equation x*x - 6x - 7 = 0. Start at 0 and search over increasing x values. Print the value of x that satisfies the equation and then stop.
The output will look like:
Search
7
Can you give me a clue or an idea of how to start this?
UPDATE!
Here is the solution:
int x = 0;
while ((x*x-6*x-7) != 0)
{
x++;
}
System.out.println(x);
xsupposed to be an integer? Or could it be adouble? – thkala Jan 11 at 17:51