A-M baby
This commit is contained in:
parent
764da6cbbb
commit
db842d013d
19005 changed files with 197040 additions and 7 deletions
6
Task/Loops-For/ColdFusion/loops-for-1.cfm
Normal file
6
Task/Loops-For/ColdFusion/loops-for-1.cfm
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
<cfloop index = "i" from = "1" to = "5">
|
||||
<cfloop index = "j" from = "1" to = "#i#">
|
||||
*
|
||||
</cfloop>
|
||||
< br />
|
||||
</cfloop>
|
||||
10
Task/Loops-For/ColdFusion/loops-for-2.cfm
Normal file
10
Task/Loops-For/ColdFusion/loops-for-2.cfm
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
<cfscript>
|
||||
for( i = 1; i <= 5; i++ )
|
||||
{
|
||||
for( j = 1; j <= i; j++ )
|
||||
{
|
||||
writeOutput( "*" );
|
||||
}
|
||||
writeOutput( "< br />" );
|
||||
}
|
||||
</cfscript>
|
||||
Loading…
Add table
Add a link
Reference in a new issue