How do i resolve method Overlapping in java/Processing [duplicate]
- by user3718913
This question already has an answer here:
How do I compare strings in Java?
24 answers
I have two methods/function in a class, called, Qestion1 and Question2, i want it in such a way that after the user has answered Question one correctly, the Question 2 method is called. Whenever i call the method 2, it displays both of them together instead exiting the first method first. Here's a dummy code to illustrate what i'm saying:
void Question1() {
String question="What is the capital of England?";
String Answer="London";
if(Answer=='London')
{
Question2();
}
}
void Question2() {
String question="What is the capital of California?";
String Answer="Sacramento";
if(Answer=='Sacramento')
{
Question3();
}
}
Pls, this question is in no way related to that other question. Pls peruse the thread again.