Home
Teaching
机器学习
统计
编程
可视化
Engineering
Tool
Ape Tools
Angel Tools
Student 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;