C Primer Plus 例子6.5中的小問題

來源:互聯網
上載者:User

標籤:class   blog   com   os   問題   io   

程式清單6.5 compflt.c是比較浮點數是否相等的例子。

原程式如下:

// cmpflt.c -- 浮點數比較#include <math.h>#include <stdio.h>int main(void){const double ANSWER = 3.14159;double response;printf("What is the 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;}

 在while迴圈中輸入的時候,如果輸入非數位字元,則會陷入死迴圈。

我重新修改了一下,修改後的程式如下:

// cmpflt.c -- 浮點數比較#include <math.h>#include <stdio.h>int main(void){const double ANSWER = 3.14159;int status = 0;double response;printf("What is the value of pi?\n");status = scanf("%lf", &response);while (fabs(response - ANSWER) > 0.0001  && status == 1){printf("Try again!\n");status = scanf("%lf", &response);}if (status == 1)printf("Close enough!\n");elseprintf("You input a wrong char.\n");return 0;}

 仍然有問題,如果輸入字元,比如"w",則比較過程直接結束了。較好的方法應該是在while迴圈內假如if判斷語句。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.