Answer:
See Explanation
Explanation:
The lines with incorrect syntax and corrections are:
1.
Line:
usersChoice == Integer.parseInt(usersChoiceString);
Error
The error is that a relational operator (==) is used instead of an assignment operator (=)
Correction
usersChoice = Integer.parseInt(usersChoiceString);
2.
Line:
System.out.println("Fries with that?\n1 - Yes\n2 - No";
Error:
The line requires a corresponding close bracket
Correction
System.out.println("Fries with that?\n1 - Yes\n2 - No");
3.
Line:
usersChoiceString = input.next()
Error:
The line is not terminated
Correction:
usersChoiceString = input.next() ;
4.
Line
if (usersChoice = 1)
Error
A relational operator is needed
Correction:
if (usersChoice == 1)
Lastly, you need to initialize bill to a value or prompt user for input.
I've added the full source code as an attachment