#include <stdio.h>
int main()
{
int cm_a;
scanf("%d",&cm_a); //定义输入的变量
const int cm_to_m = 100;
const float m_to_inch = 0.3048;
const int inch_to_foot = 12; //定义换算常量
int temp_a = (cm_a * inch_to_foot) / (cm_to_m * m_to_inch) ;
//printf("%d\n",temp_a); //将cm转换为英寸,打印值进行验算。
int temp_inch = temp_a % inch_to_foot ;
int temp_foot = temp_a / inch_to_foot ;
printf("%d %d",temp_foot,temp_inch); //计算英寸和英尺的值并输出
return 0;
}
今天的文章2-1. 厘米换算英尺英寸(15)分享到此就结束了,感谢您的阅读。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/68732.html