
USING SCHELL SCRIPT FOR GITBASH
WRITE A PROGRAM USING FOR LOOP OR FUNCTIONS
Find the even multiples of any number chosen by the user in a given range – the user
should specify the multiples of which number they want to print and a minimum and maximum
value. The multiples printed should be within the [minimum, maximum] range. For example, if
the user choses the number 7 and would like to print all even multiples in the [15, 60] range, the
program should print all the even multiples that are bigger than or equal to 15 (minimum), but
smaller than or equal to 60 (maximum). The program should keep a count of how many numbers
were printed and should output that count, as well as the numbers. The output then, for the
example given, should be 28, 42, 56, and the count should be 3.
THE IMAGE IS HOW THE OUTPUT SHOULD LOOK LIKE
![- TASK 1
-----
WELCOME
Enter the number to find the multiples:
7
Enter the minimum value in range:
15
Enter the maximum value in range:
60
Multiples in given range [15,60]:
28
42
56
Coint of multiples is 3](https://content.bartleby.com/qna-images/question/f08c272d-6d5e-40bf-9093-99a5e11b9860/3ed45aef-8971-4ed3-9ccc-c9066f3f8c23/pa9piug_thumbnail.png)

Step by stepSolved in 2 steps with 1 images

- Write a function called isValidLength that takes an integer number and returns true if the number has a valid length and false otherwise. Valid- length is determined by finding number length. If the length is at least 3 digits and at most 5 digits, then the number has a valid length. For example, the number 324 is valid because it's 3 digits long and the number 22 is invalid because it’s 2 digits long.arrow_forwardComplete the rotate_text() function that takes 2 parameters, a string data and an integer n. If n is positive, then the function will shift all the characters in data forward by n positions, with characters at the end of the string being moved to the start of the string. If n is 0 then the text remains the same. For example: rotate_text('abcde', rotate_text('abcde', rotate_text('abcde', 1) would return the string 'eabcd' 3) would return the string 'cdeab' 5) would return the string 'abcde' rotate_text('abcde', 6) would return the string 'eabcd' ... and so on. If n is negative, then the function will shift the characters in data backward by n positions, with characters at the start of the string being moved to the end of the string. For example: rotate text('abcde', -1) would return the string 'bcdea'arrow_forwardPython Write a function called count_dashes that takes a line of text as inputand outputs the number of dashes in it, as shown below. In addition to printing the requested information, return the number of dashes. The function should output (print) its findings as follows:There are DDD dashes in 'XXX'.where XXX and DDD are replaced by the appropriate values that are based on the given argument.arrow_forward
- Write a function that finds and returns the smallest value of n for which: 1 + 2 + 3 + ... + n is greater than or equal to max (where max is a number input from the user). You can use the following prototype: int SmallestValue(int); In the main program be sure to declare all variables and show the call. Be user friendly! Sample run: What is the max number: 23 The smallest value of n where the sum of 1 to n is greater or equal to 23 is: 7 Again? Y What is the max number: 12 The smallest value of n where the sum of 1 to n is greater or equal to 12 is: 5 Again? N in c++ please use basic coding I'm not too advancedarrow_forwardWrite a set of functions that calculate the cost of movie tickets for a family. Using a loop, keep asking: The age of the movie goer. Based on this age, you will charge them these amounts: Under age 3, the ticket is free. If they are between 3 and 12, the ticket is $10.25. If they are over age 12, the ticket is $15.50. If they are 55 or older, the ticket is $12. If they buy at least 4 tickets, they receive a 20% discount. Then, keep a running_total that is output to the screen after each age has been entered. This running_total should be accessed through the functions using a pass-by-reference variable: &running_total The other function parameter variables are to be pass-by-value. Tell them to enter a zero when they want to stop. Finally, calculate the total cost including a 7.5% sales tax. and output it to the screen. Be sure that the code is broken up into functions with good comments. Put as little code in main() as you can get away with and still make sense.…arrow_forwardUse Python Write a function, say_spam(n); it takes an integer parameter n and prints "Spam!" n times in response. You should assume n > 0 for this function. Hint: Use a simple for loop with a print statement in the body of the loop. For example: Test Input Result say_spam(1) Spam! say_spam(2) say_hello(3) Spam! Spam! say_spam(5) Spam! Spam! Spam! Spam! Spam!arrow_forward
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education





