码迷,mamicode.com
首页 > 其他好文 > 详细

Day1014 英寸厘米相互换算

时间:2014-10-15 00:19:49      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:os   ar   java   数据   ad   new   as   字符串   class   

import java.util.Scanner;


public class addd {
  public static void main(String[] args) {
  Scanner sc = new Scanner(System.in);

//定义数据类型
  double L, IL = 0;
  System.out.print("请输入尺寸:");

//数值的录入
  L = sc.nextDouble();
  System.out.print("请输入单位:");

//字符串的录入
  String dw = sc.next();

//判断关键字符是“cm”
    if (dw.equals("cm") ){
    IL = L / 2.54;
    System.out.printf("%.1f厘米=%.1f英寸",L , IL);
  }

//判断关键字符是“inch”

    else if(dw.equals("inch") ){
    IL = L * 2.54;
    System.out.printf("%.1f英寸=%.1f厘米",L , IL);
  }
  sc.close();
}
}

Day1014 英寸厘米相互换算

标签:os   ar   java   数据   ad   new   as   字符串   class   

原文地址:http://www.cnblogs.com/JamseWilson/p/4025378.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!