Waiting for answer This question has not been answered yet. You can hire a professional tutor to get the answer.

QUESTION

int userTurn(int cnt){Scanner input = new Scanner(System.in);int temp=0;do{System.out.println("There are " + cnt + " stones in the

int userTurn(int cnt){Scanner input = new Scanner(System.in);int temp=0;do{System.out.println("There are " + cnt + " stones in the pile.");System.out.print("How many stones would you like to remove?(1, 2, or 3) ");temp = input.nextInt();if (temp 3) // 1, 2, or 3 stones can be removed only{System.out.println("Please enter 1, 2, or 3.");continue;}if (temp > cnt){System.out.println("You cannot remove more stones than there are in the pile.");continue;}break; // a valid # was entered} while (true);return temp;} // userTurn

The desired control flow graph is as given below: The desired Static data flow testing graph is as given below:
Show more
LEARN MORE EFFECTIVELY AND GET BETTER GRADES!
Ask a Question