Question: Program 1 Name this class Balanced. Repeatedly read a line from System.in and print out either balance or not balanced depending on whether or not
Program 1
Name this class Balanced. Repeatedly read a line from System.in and print out either balance or not balanced depending on whether or not the delimiters are balanced. When the String is not balanced, print out the index of the character you were inspecting when you determined the imbalance. Do not print anything else. I will be grading this assignment with an automated script. Exit the program when the user enters a blank line. Read in the line and iterate over the characters like so:
String line = input . nextLine (); // input is the Scanner
for ( int i =0; i < line . length (); i ++)
{ char c = line . charAt (i ); // do something with c }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
