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
Why do we need arrays in c?
What is const keyword in c?
Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.
What is a substring in c?
What is use of integral promotions in c?
How do I get a null pointer in my programs?
Hi can anyone tell what is a start up code?
A c program to display count values from 0 to 100 and flash each digit for a secong.reset the counter after it reaches 100.use for loop,. pls guys hepl me.. :(
What is the package for freshers(Non IIT) in amazon(hyderabad). And what is the same for those who are a contract employee.
Explain how do you list a file’s date and time?
What’s the special use of UNIONS?
Explain how can a program be made to print the name of a source file where an error occurs?
What is array of structure in c?
what do the 'c' and 'v' in argc and argv stand for?
What is #line?