sqrt.c 281 B

12345678910111213141516
  1. #include <math.h>
  2. #include <stdio.h>
  3. int main(int argc, char** argv) {
  4. float x;
  5. printf("enter a float: ");
  6. fflush(stdin);
  7. if (scanf("%f", &x) != 1) {
  8. perror("reading error");
  9. return 1;
  10. }
  11. printf("sqrt(x) = %f\n", sqrt(x));
  12. return 0;
  13. }