博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
<C Primer Pus>6 Using Relational Operators and Exprssions
阅读量:5840 次
发布时间:2019-06-18

本文共 857 字,大约阅读时间需要 2 分钟。

1 while(number < 6){ 2     printf("Your number is too small.\n"); 3     scanf("%d", &number);                 4 } 5  6  7 while(ch != '$'){ 8     count++; 9     scanf("%c", &ch);10 }    11 12 13 while(scanf("%f", &num) == 1){14     sum = sum +num;15 }
1 #include 
2 #include
3 int main(void){ 4 const double ANSWER = 3.14159; 5 double respone; 6 7 scanf("%lf", &respone); 8 while (fabs(respone - ANSWER) > 0.0001){ 9 printf("Try again.\n");10 scanf("%lf", &respone);11 }12 13 printf("Close enough.\n");14 15 return 0;16 }

REMEBER :

You should limit yourself to using only < and > in floating-point comparisons.

while(status == 1)  is ture.  and  while(status = 1) is ture ....so advice to write like that  while(1 == status).

转载于:https://www.cnblogs.com/michael2016/p/6658693.html

你可能感兴趣的文章
关于codeMirror插件使用的一个坑
查看>>
评论:人才流失强力折射出现实畸形人才观
查看>>
git服务器gitlab之搭建和使用--灰常好的git服务器【转】
查看>>
基于机器学习的web异常检测——基于HMM的状态序列建模,将原始数据转化为状态机表示,然后求解概率判断异常与否...
查看>>
分享一种需求评审的方案
查看>>
虚拟运营商10月或大面积放号 哭穷背后仍有赢家
查看>>
Server2016开发环境配置
查看>>
分布式光伏发电建设中的逆变器及其选型
查看>>
增强网络安全防御 推动物联网走向应用
查看>>
UML中关联,组合与聚合等关系的辨析
查看>>
《大数据管理概论》一3.2 大数据存储与管理方法
查看>>
PowerBuilder开发简单计算器
查看>>
怎样使用linux的iptables工具进行网络共享
查看>>
《HTML5与CSS3实战指南》——导读
查看>>
RHEL6下安装oracle 10g(一)
查看>>
Kconfig的格式
查看>>
关于Cursor的moveToFirst和moveToNext的意义
查看>>
个人--工资划分5份
查看>>
有关文件下载的文件名
查看>>
史上最详细的wamp配置虚拟域名步骤
查看>>