Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

write program in python language, and also no use of def, main void, import function just if-else-elif and while When you write mathematical expressions, as

write program in python language, and also no use of def, main void, import function just if-else-elif and while

When you write mathematical expressions, as well as lines of code in python, it is important to keep your parentheses balanced. For every open parenthesis, (, there must be a matching closed parenthesis, ). For instance, these math expressions have unbalanced parentheses:

  • 5 * (7 * (2 + 4)
  • ((7 / 2) + 5) - 3)

However, these have balanced parentheses:

  • (1 + 1) + (5 + 7 * 2)
  • 5 + (4 * (3 + (5 + 5)))

You should write a program that takes a string as input, and determines if the parentheses are balanced or not. You can use a while-loop to determine this. While looping through the characters, keep track of how many closed and open parentheses you see. If either of the below conditions is met, that indicated unbalanced parentheses:

  • If at any point in the loop there are more closed parentheses than open ones.
  • If after the loop, the number of open is not the same as the number of closed.

Some examples:

Enter string: 5 + (4 * (3 + (5 + 5))) Parentheses balanced 
Enter string: ()()(())) Parentheses unbalanced

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Databases Illuminated

Authors: Catherine Ricardo

2nd Edition

1449606008, 978-1449606008

More Books

Students also viewed these Databases questions

Question

What is the most important part of any HCM Project Map and why?

Answered: 1 week ago