题目要求
题目分析
整个题目的要求还是比较简单的,仅仅是一个简单的公式换算。唯一需要注意的就是英寸的计算不是输入的厘米数换算的英寸总数,而是多少英尺之后余下多少英寸。
程序样例
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
int numCentimeter = input.nextInt();
input.close();
double numFoot = numCentimeter / 100.0 / 0.3048;
double numInch = numFoot * 12;
System.out.println((int)numFoot + " " + ((int)numInch % 12));
}
}