Advertisement
Malinovsky239

Untitled

Jun 16th, 2012
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.13 KB | None | 0 0
  1. #include <cstdio>
  2. #include <cmath>
  3.  
  4. int main() {
  5.     long double a;
  6.     scanf("%Lf", &a);
  7.     printf("%Lf", sqrt(a));
  8.     return 0;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement