sqaure root

hi

i was wondering about this sqaure root thing. I don't know how to do it, but i saw something undr help and coppied it. but i only got it to work it console mode and it was only 10 numbers long or something (sqaure root of 2 i was wanting) so i was wondering how to make it go forever



Answer this question

sqaure root

  • danlehen

    Try this if you are after a simple square root.

    double x = 456;

    x = Math.Sqrt(x);

    MessageBox.Show(x.ToString());


  • sqaure root