inherit
27278
0
Aug 3, 2024 9:13:18 GMT -8
Josh
Apple iManiac / eBay Addict
12,347
July 2004
jwd41190
|
Post by Josh on Mar 19, 2011 10:21:46 GMT -8
Edit: I got it working now...this can be locked thanks
|
|
inherit
97216
0
Nov 26, 2024 13:53:14 GMT -8
Bennett 🚀
Formerly iPokemon.
3,622
January 2007
catattack
iPokemon's Mini-Profile
|
Post by Bennett 🚀 on Mar 19, 2011 21:45:52 GMT -8
If this helps any, this is how you do it in javascript.. <script type="text/javascript"> var topAmount = 10; for(x=topAmount;x>0;x--){ for(z=0;z<x;z++){ document.write('T'); } document.write('<br />'); } </script>
EDIT: And the opposite way.. <script type="text/javascript"> var bottomAmount = 10; for(x=0;x<=bottomAmount;x++){ for(z=0;z<x;z++){ document.write('T'); } document.write('<br />'); } </script>
|
|
inherit
27278
0
Aug 3, 2024 9:13:18 GMT -8
Josh
Apple iManiac / eBay Addict
12,347
July 2004
jwd41190
|
Post by Josh on Mar 20, 2011 10:13:28 GMT -8
If this helps any, this is how you do it in javascript.. <script type="text/javascript"> var topAmount = 10; for(x=topAmount;x>0;x--){ for(z=0;z<x;z++){ document.write('T'); } document.write('<br />'); } </script>
EDIT: And the opposite way.. <script type="text/javascript"> var bottomAmount = 10; for(x=0;x<=bottomAmount;x++){ for(z=0;z<x;z++){ document.write('T'); } document.write('<br />'); } </script> Yes, that helped great I got it now!!
|
|