标签:style blog color strong io re
如果已知英制长度的英尺foot和英寸inch的值,那么对应的米是(foot+inch/12)*0.3048。现在,如果用户输入的是厘米数,那么对应英制长度的英尺和英寸是多少呢?别忘了1英尺等于12英寸。
输入格式:
输入在一行中给出1个正整数,单位是厘米。
输出格式:
在一行中输出这个厘米数对应英制长度的英尺和英寸的整数值,中间用空格分开。
输入样例:
170
输出样例:
5 6
1 #include <stdio.h> 2 int main() 3 { 4 int foot,inch; 5 int cm; 6 7 scanf("%d",&cm); 8 foot = ((cm / 100.0) / 0.3048); 9 inch = (((cm / 100.0) / 0.3048) - foot) * 12; 10 printf("%d %d",foot, inch); 11 12 return 0; 13 }
2-1. 厘米换算英尺英寸(15),布布扣,bubuko.com
标签:style blog color strong io re
原文地址:http://www.cnblogs.com/aexin/p/3850752.html