Write a program that uses a for loop and the range …

$25.00

Category: You will Instantly receive a download link for .zip solution file upon Payment || To Order Original Work Click Custom Order?

Description

5/5 - (2 votes)

Program1
Write a program that uses a for loop and the range function to display a range of integers on one line separated by spaces. The program should begin by prompting the user to enter the start, end, and step values for the range. See example output of several runs.

Example Outputs:

Start of range 0

End of range 101

Step for range 10

0 10 20 30 40 50 60 70 80 90 100

Start of range 200

End of range 0

Step for range -40

200 160 120 80 40

Program 2

Write a program that uses a while loop to print a table of squares and cubes of the integers from 5 to 50 in increments of 5. Use tabs to create columns. See Example Output. NOTE: you must use a while loop.

Example Output

5 25 125

Program3

Write a program that uses nested loops to print a right triangle as oriented below. The program should begin by prompting the user for the number of rows.

How many rows in the triangle? 8

oooooooo

ooooooo

oooooo

ooooo

oooo

ooo

oo

o

How many rows in the triangle? 5

ooooo

oooo

ooo

oo

o