Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a program in PYTHON that will take an input file called input.txt which will contain a Java program and parse it and output an

Write a program in PYTHON that will take an input file called input.txt which will contain a Java program and parse it and output an annotated version.

Your program will track the nesting depth of the braces of the input file and will output an annotated version of the file

. Your final program will 1. List the nesting depth of curly braces 2. Ignore braces inside quotes or comments Use Python Assume that all quoted strings begin and end on the same line. Sample INPUT: -------------------

image text in transcribed

Sample INPUT import blah; class Foo void Foo0 System.out.println("braces are fun! "); // ignored if (condition) // also ignored: { // as is this: ) //end of program Sample annotated OUTPUT: 0 import blah 0 class Foo 1 void Foo0 2 System.out.println("braces are fun! "): /ignored 2if (condition) /l also ignored int a 1 : // as is this: 0 // end of program

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

New Trends In Databases And Information Systems Adbis 2019 Short Papers Workshops Bbigap Qauca Sembdm Simpda M2p Madeisd And Doctoral Consortium Bled Slovenia September 8 11 2019 Proceedings

Authors: Tatjana Welzer ,Johann Eder ,Vili Podgorelec ,Robert Wrembel ,Mirjana Ivanovic ,Johann Gamper ,Mikolaj Morzy ,Theodoros Tzouramanis ,Jerome Darmont

1st Edition

3030302776, 978-3030302771

More Books

Students also viewed these Databases questions

Question

5. Identify the essential functions of a job.

Answered: 1 week ago

Question

4. Explain the strengths and weaknesses of each approach.

Answered: 1 week ago