Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Code for calculating
square root without
using library function,
of math.h

Answer Posted / darshana

Dim i As Integer

Console.WriteLine("enter the number")
i = Console.ReadLine()

For a As Integer = 0 To 1000
If a * a = i Then
Console.WriteLine(a)
Exit Sub
End If


Next

Is This Answer Correct ?    5 Yes 14 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is LINKED LIST? How can you access the last element in a linked list?

1113


difference between object file and executable file

6800


Is it valid to address one element beyond the end of an array?

1225


List a few unconditional control statement in c.

1029


Did c have any year 2000 problems?

1156


What are the 3 types of structures?

1063


Do you know pointer in c?

1107


Can main () be called recursively?

1176


Is it better to bitshift a value than to multiply by 2?

1143


Can a program have two main functions?

1176


What are the salient features of c languages?

1137


Implement bit Array in C.

1199


What is ctrl c called?

1098


Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record

5264


Function which gives a pointer to a binary trees const an integer value at each code, return function of all the nodes in binary tree.?

1129