C Primer Plus5-4

本程序接收用户输入的高度值(单位为厘米),并将其转换为英尺和英寸进行显示。用户可以继续输入直至输入非正数值,程序会优雅地退出。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

/*4.编写一个程序让用户按厘米输入一个高度值,然后,程序按照厘米和英尺英寸显示这个高度值。
允许厘米和英寸的值出现小数部分。程序允许用户继续输入,直到用户输入一个非正的数值。程序运行的示例如下面所示:
Enter a height in centimeters: 182
182.0 cm = 5 feet, 11.7 inches
Enter a height in centimeters(<=O to quit): 168
168.0 cm = 5 feet, 6.1 inches
Enter a height in centimeters(<=O to quit): 0
bye*/

#include<stdio.h>
#include<stdlib.h>

int main()
 {
     float height;

     printf("Enter a height in centimeters:");
     scanf("%f", &height);

     while(height>0)
     {
         printf("%.1f cm = %d feet, %.1f inches\n",height,(int)(height / 2.54 / 12),height/2.54-(int)(height / 2.54 /12) * 12);
         printf("Enter a height in centimeters(<=O to quit):");
         scanf("%f", &height);
     }
     printf("bye\n");
     system("pause");
     return 0;

 }

这里写图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值