Created
August 26, 2017 15:47
-
-
Save annibuliful/9959dd55c2b08652893e4eb6e64ab689 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 = pow(number , 0.25); | |
| printf("%lf " , result); | |
| return 0; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment