7-1 厘米换算英尺英寸 (15 分)
如果已知英制长度的英尺foot和英寸inch的值,那么对应的米是(foot+inch/12)×0.3048。现在,如果用户输入的是厘米数,那么对应英制长度的英尺和英寸是多少呢?别忘了1英尺等于12英寸。
输入格式:
输入在一行中给出1个正整数,单位是厘米。
输出格式:
在一行中输出这个厘米数对应英制长度的英尺和英寸的整数值,中间用空格分开。
输入样例:
170
输出样例:
5 6
提交链接:https://pintia.cn/problem-sets/14/problems/781
#include<stdio.h>
int main()
{/*int cm=0,inch=0,foot=0, total;scanf("%d",&cm);total =cm/(30.48/12); //1. 30.48/12 = 2.54, 170/2.54 = 66.929133, 再取整.//2.如何将这个 total(inch 的总体) 分给 inch 和 foot, 并且 foot =12* inch ?foot= total/12; // 根据换算关系即可求出 footinch= total%12; // 巧妙得利用了 foot 与 inch 的关系,printf("%d %d",foot,inch);*////------------整数与小数的那些事儿-------------int int_z;float float_u;///------------整数与小数之间的除法?结果取决于最终值的类型-------------/*int_z = 5/1.5; //3float_u = 5/1.5; //3.333333printf("%d %f",int_z,float_u);*//*int_z = 7/5; //1float_u = 7/5; //1.000000 错误printf("%d %f",int_z,float_u);*//*int_z = 4.5/1.3; //3float_u = 4.5/1.3; //3.461539printf("%d %f",int_z,float_u);*//*int_z = 5.5/2; //2float_u = 5.5/2; // 2.750000printf("%d %f",int_z,float_u);*////------------如何上取整?-------------/*int_z = 5.1/2; //5.1/2 = 2, 5.8/2 = 2.int_z = (5.1-1)/2+1; //上取整, 结果为 3printf("%d ",int_z);*////------------小数与整数间的减法?-------------/*int_z = 5.1-1; //4float_u = 5.1-1; //4.100000printf("%d %f",int_z,float_u);*/return 0;
}
//取整总结,详情参考:https://www.cnblogs.com/cynchanpin/p/6857018.html
转载:https://blog.csdn.net/weixin_42829741/article/details/81277213