194k views
5 votes
write a program to draw a right-justified triangle given the height as input. the first row has one asterisk (*) and increases by one for each row. each asterisk is followed by a blank space and each row ends with a newline.

2 Answers

7 votes

Final answer:

To draw a right-justified triangle, use nested loops in a programming language like Python.

Step-by-step explanation:

To draw a right-justified triangle, you can use nested loops in a programming language like Python. Here is an example:

height = int(input('Enter the height of the triangle: '))

for i in range(1, height + 1):
for j in range(height - i):
print(' ', end='')
for k in range(i):
print('*', end=' ')
print()

In this program, the outer loop controls the row number, while the inner loops control the number of spaces and asterisks in each row. The 'end' parameter in the print statement ensures that each row ends with a newline character.

User Reynold
by
7.6k points
2 votes

This is a Python program that draws a right-justified triangle based on the specified height:

How to write the code

def draw_right_justified_triangle(height):

for i in range(1, height + 1):

print(" " * (height - i) + "* " * i)

# Input the height of the triangle

triangle_height = int(input("Enter the height of the triangle: "))

# Call the function to draw the right-justified triangle

draw_right_justified_triangle(triangle_height)

User Kichik
by
8.2k points