Forum: C++
Feb 14th, 2005, 12:53 PM
|
|
Replies: 20
Views: 439
Best C++ texts
// Consider the Deitel series of texts on C++.
// Google -- Deitel .
|
Forum: C++
Feb 14th, 2005, 12:40 PM
|
|
Replies: 8
Views: 381
PHI - the Golden Ratio
// Phi, the Golden ratio
// We can calculate Phi without recursion or iteration,
// as it is one solution to a quadratic equation.
// phi = 1/2 = 1/2 *(SQRT(5)).
double PHI = 0.5...
|