Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Find correct assignment statements. Part 1 Cost: 1 0 | Solved: 1 1 Memory limit: 2 5 6 Mb Time limit: 1 0 0 0

Find correct assignment statements. Part 1
Cost: 10| Solved: 11
Memory limit: 256 Mb
Time limit: 1000 ms
Input file: stdin
Output file: stdout
** Use only C++**
Task:
You are given a set of strings separated with line feed characters.
Find all the substrings that are correct assignment statements.
In this task a string is considered to be a correct assignment statement when:
a variable is assigned to a constant value;
a variable is assigned to another variable.
For example, the strings "a9f =7;" and "a=b;;" are considered to be correct assignment statements (note that there is a semicolon at the end of each statement).
The strings "a=6","a-=10; ","d=#$&_h" are considered to be incorrect.
Input:
A set of strings separated with line feed characters.
Output:
All the longest correct substrings in the order in which they appear in the text, separating each with a line feed character.
Example:
Input
Output
hello>a=18; a=rrr
a=18;
846h4r890a**=10;xd
s=a;
s=a; g=yur; d=q: : *
g=yur;
image text in transcribed

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

Students also viewed these Databases questions