Difference between revisions of "Nesting"
From Conservapedia
(nested parentheses.) |
m (cats) |
||
| (2 intermediate revisions by one other user not shown) | |||
| Line 4: | Line 4: | ||
((3 - 4) * sin(30) + 16) / (15 - (3 / 4)) | ((3 - 4) * sin(30) + 16) / (15 - (3 / 4)) | ||
| + | |||
| + | Computer languages also use nested, both in arithmetic and in [[control structures]]. In [[PHP]], nesting is infinite.<ref>[http://php.net/manual/en/control-structures.if.php PHP Manual - if]</ref> | ||
| + | |||
| + | ==Notes== | ||
| + | <references /> | ||
==See also== | ==See also== | ||
*[[Fractals]] | *[[Fractals]] | ||
| + | [[Category:Computer tips]] | ||
| + | [[Category:Mathematics]] | ||
Latest revision as of 14:33, November 14, 2011
Nesting is the placement of similar structures within each other, like the Matrushka dolls, with a larger structure containing a smaller structure, and so on.
In arithmetic, we often see nested parentheses.
((3 - 4) * sin(30) + 16) / (15 - (3 / 4))
Computer languages also use nested, both in arithmetic and in control structures. In PHP, nesting is infinite.[1]