שתי בעיות הכי קשות בתכנות
ישנן רק שתי בעיות קשות במדעי המחשב: פסילת זכרון מטמון ונתינת שמות, ושגיאות באחד. פיל קרלטון
There are two hard things in computer science:
1. cache invalidation,
2. naming things,
3. off-by-one errors.
- PHIL KARLTON
- public int MultiplyTo(int max)
- {
- int product = 1;
- for (var i = 0; i <= max; i++)
- {
- product *= i;
- }
- return product;
- }