#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)
最新推荐文章于 2024-10-20 15:14:43 发布