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.