Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <cmath>
- using namespace std ;
- int main()
- {
- float a ;
- cout << "Enter a number" << endl ;
- cin >> a;
- cout << endl << "The square root of the number = " << sqrt(a);
- }
Advertisement
Add Comment
Please, Sign In to add comment