-
Recent Posts
Recent Comments
Archives
Categories
Meta
Tag Archives: assignments
1.61803398…
In order to declutter my website at school I decided to move all explanatory content over to this blog. I decided to start with an interesting number I have been using in some of my programming assignments. This magic number … Continue reading
Posted in Math, Programming Assignments, Uncategorized
Tagged assignments, Golden Ratio, Math
Comments Off on 1.61803398…
Conditional Assignments
Many programs require implementing some code which assigns values to variables based on certain conditions. Here is an example: if( a < 5 ) b = 3; else b = 8; The same in abbreviated form (Java): b … Continue reading
Posted in Programming Essentials, Uncategorized
Tagged assignments, conditional, if, java, lookup-table
Comments Off on Conditional Assignments