-
-
Save kfatehi/3850821 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
➜ triangle_lulz ruby triangle.rb | |
Enter base size | |
10 | |
Triangle of base size 10: | |
* | |
** | |
*** | |
**** | |
***** | |
****** | |
******* | |
******** | |
********* | |
********** | |
*********** | |
************ | |
➜ triangle_lulz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
puts "Enter base size " | |
base = gets.chomp.to_i | |
puts "Triangle of base size #{base}:" | |
[*0..base].each do |col| | |
print "*\n" | |
[*0..col].each do | |
print "*" | |
end | |
end | |
print "*\n" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment