Java英尺和米的转换

news/2024/11/25 9:41:01/

英尺和米的转化公式:
1英尺=12英寸=0.3048米

方法一:

    int foot; int inch; Scanner in = new Scanner(System.in);foot = in.nextInt(); inch = in.nextInt();System.out.println("foot="+foot+",inch="+inch);System.out.println((foot+inch/12.0)*0.3048);

方法二:

    int foot; double inch;Scanner in = new Scanner(System.in);foot = in.nextInt(); inch = in.nextInt();System.out.println("foot="+foot+",inch="+inch);System.out.println((foot+inch/12)*0.3048);

手动强制转化为厘米:

    int foot; double inch;Scanner in = new Scanner(System.in);foot = in.nextInt(); inch = in.nextInt();System.out.println("foot="+foot+",inch="+inch);System.out.println((foot+inch/12)*0.3048);//手动强制类型转换System.out.println((int)((foot+inch/12)*0.3048*100)+"cm");

http://www.ppmy.cn/news/779485.html

相关文章

7-2 厘米换算英尺英寸 (C语言)

如果已知英制长度的英尺foot和英寸inch的值,那么对应的米是(footinch/12)0.3048。现在,如果用户输入的是厘米数,那么对应英制长度的英尺和英寸是多少呢?别忘了1英尺等于12英寸。 输入格式: 输入在一行中给出1个正整数&…

用java写米与英尺,JAVA 英制变换(英尺与英寸)

JAVA 英制转换(英尺与英寸) 系统实际业务中,还有些外国船舶水尺用的英制计算单位。 写了一个简单的 英尺与英寸的转换 。 英尺 --> 英寸 的转换: public class FeetToInch { /** * param args */ public static void main(String[] args) { String a…

英尺C语言,C语言中关于英尺、英寸、厘米的换算

(footinch/12)*0.3048 cm / 100 footinch/12 cm / (100 * 0.3048) cm / 30.48 因为1foot 12inch&#xff0c;所以inch / 12 < 1&#xff0c;所以foot cm/30.48的整数部分 inch / 12 cm/30.48的小数部分。 六七行就是完成这个功能。 扩展资料&#xff1a; 一、英尺和英…

github上的typescript项目,如何运行

github上的typescript项目&#xff0c;如何运行&#xff08;简单项目都可以&#xff09; 环境 1.Ubuntu22.04 2.node js 14以上 安装notjs 14 以上 { sudo npm cache clean -f sudo npm install -g n sudo n stable // 安装最新stable版本 sudo n latest //安装最新版本 } 3.安…

鸢尾花书简介

鸢尾花书简介 鸢尾花书 系列介绍1《编程不难》2《可视之美》3《数学要素》4《矩阵力量》5《统计至简》6《数据有道》7《机器学习》 重要链接 特别棒&#xff0c;极力推荐&#xff01;&#xff01;&#xff01; 鸢尾花书 系列介绍 1《编程不难》 《编程不难》&#xff1a;https:…

前端基础知识学习——滑动门(利用背景图像的可层叠性 创造特殊效果)

滑动门&#xff1a;利用背景图像的可层叠性&#xff0c;并允许他们在彼此之上进行滑动&#xff0c;以创造一些特殊的效果。 举例&#xff1a; <!DOCTYPE html> <html lang"en"> <head><meta charset"UTF-8"><meta name"…

github上传超过100M的大文件

当上传的工程中有超过100M的文件时&#xff0c;直接上传github会产生如下报错&#xff1a; remote: error: File retinaface-R50/R50-0000.params is 112.54 MB; this exceeds GitHubs file size limit of 100.00 MB! [remote rejected] master -> master (pre-receive ho…

NotePad 打开文件 出现中文汉字乱码 解决办法

NotePad 打开文件 出现中文汉字乱码 解决办法 欢迎关注&#xff1a;程序员财富自由之路 现象&#xff1a; 出现中文汉字乱码&#xff1a; 解决办法&#xff1a; 先别着急用notepad修改编码 1. 用windows系统自带记事本打开&#xff0c; 2 &#xff0c;选择文件另存为 3. 如果…