7-1 厘米换算英尺英寸(15 分)
如果已知英制长度的英尺foot和英寸inch的值,那么对应的米是foot+inch/12)×0.3048。现在,如果用户输入的是厘米数,那么对应英制长度的英尺和英寸是多少呢?别忘了1英尺等于12英寸。
输入格式:
输入在一行中给出1个正整数,单位是厘米。
输出格式:
在一行中输出这个厘米数对应英制长度的英尺和英寸的整数值,中间用空格分开。
输入样例: 170 输出样例: 5 6
题很简单,为了方便用到一点强制转换。
通过代码:
1 2 3 4 5 6 7 8 91011121314151617181920212223 #include<cstdio>#include<iostream>using namespace std;int main){ double cm; double m; int foot,inch; double bash; whilecin >> cm) { m = cm / 100; bash = m / 0.3048; int bash_l = int)bash; foot = bash_l; double bash_r = bash – bash_l; double inch_tmp = bash_r * 12; inch = int)inch_tmp; cout << foot << ” ” << inch << endl; } return 0;}
大小单双走势规律口诀h; whilecin >> cm) { m = cm / 100; bash = m / 0.3048; int bash_l = int)bash; foot = bash_l; double bash_r = bash – bash_l; double inch_tmp = bash_r * 12; inch = int)inch_tmp; cout << foot << ” ” << inch << endl; } return 0;}