今日开始完成编程题,语言使用Java:1
import java.util.Scanner;

public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int cm = scanner.nextInt();

    // 将厘米转换为米
    double meters = cm / 100.0;
    
    // 计算对应的英尺数(包含英寸部分)
    double totalFeet = meters / 0.3048;
    
    // 计算英尺的整数部分
    int foot = (int) totalFeet;
    
    // 计算英寸数,先取小数部分再转换为英寸
    double inches = (totalFeet - foot) * 12;
    int inch = (int) inches;
    
    System.out.println(foot + " " + inch);
}

}

posted on 2025-04-03 23:13  Swishy  阅读(9)  评论(0)    收藏  举报