Last active
August 27, 2017 13:46
-
-
Save annibuliful/f4bafd7467d1b5e4a718886308c39764 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <math.h> | |
int main(){ | |
double number; | |
double result; | |
printf("choose number: "); | |
scanf("%lf " , &number); | |
result = sqrt(number); | |
result = sqrt(result); | |
printf("%lf " , result); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment