Home
Engineering
Tool
Ape Tools
Angel Tools
The Gallery of Midi
The Game of Go
Random Pattern Generator
Coinbase
Log On
English
中文
English
日本語
A Dynmaic C# Code Complier
// a piece of C# code that calculate the square root of a number. double square = 5; double root=square/3; int i; if (square <= 0) return 0; for (i=0; i<32; i++) root=(root + square / root) / 2; return root;