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);
link|improve this question
15  
This is a trivial exercise, and the instructions are very detailed. Please show us that you've put some effort into trying to do it yourself. – aix Jan 11 at 17:49
It's trivial. Try to do it by yourself. Start from here docs.oracle.com/javase/tutorial/java/nutsandbolts/for.html – 4ndrew Jan 11 at 17:49
I'd suggest you try starting by yourself and when you really can't continue post a question including some of your code so we can actually give you hints. – talnicolas Jan 11 at 17:49
Edit your question and show us any code you've tried so far. – ScarletAmaranth Jan 11 at 17:50
1  
Is x supposed to be an integer? Or could it be a double? – thkala Jan 11 at 17:51
show 3 more comments
feedback

closed as too localized by Adam Zalcman, Brian Roach, Perception, jondavidjohn, mre Jan 11 at 18:05

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.

2 Answers

up vote 2 down vote accepted

This is a pretty basic programming homework question, so I'm not going to give you any actual code, but here is some pseudocode that might help:

Initialize x to 0.
while the value of x*x-6*x-7 is not 0
add 1 to x
end of while
Print the current value of x
link|improve this answer
This helped me tons! Thanks! – Vaughn Simon Jan 11 at 19:55
feedback

I suggest you start with Hello World program so you can see how to print something.

You can add a loop which iterates 7 times printing the value iterating.

Calculate and print the result of the equation.

Stop iterating when the result is 0.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.