#include #include using namespace std; #include "inv_sqrt.h" int main() { for ( float x = 0.25; x < 4.0; x += 0.001 ) { cout << "[" << x << ", " << inv_sqrt( x ) << "], " << endl; } return 0; }