"C Language" converts a numeric string to a number corresponding to this string (including positive floating-point numbers, negative floating-point numbers)

Source: Internet
Author: User
#include <stdio.h>/* write a function that converts a numeric string to a number corresponding to the string (including positive floating-point numbers, negative floating-point numbers) For example: "12.34"  returns 12.34 "123.34" Return-123.34 function prototype: Double my_atof (char *str) {}*/double my_atof (char *str) {double m=0,n=0,x=1;int flag=1;int flag2=0;if (* str== '-')  //judging plus or minus {flag2=1;str++;} while (*str!= ') {if (*str< ' 0 ' | | *str > ' 9 ') {if (*str = = '.   ') Judge before and after the decimal point {flag=0;str++;continue;} return 0;} if (flag==1)  //decimal point before integer part {m*=10;m+=*str-' 0 ';} else  //Fractional part {x*=0.1;n+=x* (*str-' 0 ');} str++;} if (flag2==0) return m+n;else return (m+n) *-1;} int main () {char s[100]={0};scanf ("%s", s);p rintf ("%f\n", My_atof (s)); return 0;}

"C Language" converts a numeric string to a number corresponding to this string (including positive floating-point numbers, negative floating-point numbers)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.