Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Need help with perl script, using perl 5 on windows Problem B16 Write the following problem, with the following restrictions: Do NOT use regular expressions

Need help with perl script, using perl 5 on windows

Problem B16

Write the following problem, with the following restrictions:

Do NOT use regular expressions

Do NOT use arrays

Prompt the user to enter a sequence of numbers (between 1 and 20) and/or letters (lower or uppercase), each number or letter is separated by a space, and the length of the sequence can vary. The user ends the sequence with a "q" or "Q", followed by a space. (Assume that the user always enters a "q" or "Q" followed by a space.)

An example of user input is: 1 12 a 2 5 P Q

After reading in the input, the script will:

Print to screen only the valid numbers in the input sequence (discard the letters and any number less than 1 or greater than 20), the numbers should be separated by a "+" (addition)

print out the sum of all the numbers.

if the user enters "q" or "Q" and then types in more characters, discard all the characters after the "q" or "Q". (Don't print out these characters, and don't add them to the sum.)

if the user enters no valid numbers, print a statement indicating that no valid number was entered.

Your script output for the example above should be: 1+12+2+5 = 20

Test your script with the following input (6 different test cases):

1 12 a 2 5 P Q

output should be:

1+12+2+5 = 20

1 3 A t 4 q

output should be:

1+3+4 = 8

c 1 Q

output should be:

1 = 1

a b c d Q

output should be:

no valid number entered (or some similar error statement)

1 2 34 q 4 5 6

output should be:

1+2 = 3

22 q 5 6

output should be:

no valid number entered (or some similar error statement)

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

Oracle PL/SQL Programming Database Management Systems

Authors: Steven Feuerstein

1st Edition

978-1565921429

More Books

Students also viewed these Databases questions