码迷,mamicode.com
首页 > 其他好文 > 详细

基本的函数

时间:2015-12-21 23:17:26      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:

fabs 是计算绝对值  %lf 是代表double类型.

下面是个小例子,浮点数比较

//浮点数比较
#include <stdio.h>
#include <math.h>
int main (void){
    const double answer = 3.1415926;
    double response;
    printf("what is value of pi?\n");
    scanf("%lf",&response);
    while (fabs(response - answer) > 0.0001) {
        printf("Try again \n");
        scanf("%lf",&response);
    }
    printf("Close enough!\n");
    return 0;
}

 

基本的函数

标签:

原文地址:http://www.cnblogs.com/TheYouth/p/5064965.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!