1.利用公式由华氏温度计算出摄氏温度, C= (5/9) * (F-32) .
2.港珠澳大桥是中国境内一座连接香港、珠海和澳门的大桥,位于中国广东省伶仃洋区域内,为珠江三角洲地区环绕高速公路南环段。桥隧全长55千米,其中主桥29.6千米、 香港口岸至珠澳口岸41.6干米;桥面为双向六车道高速公路,设计速度为100千米/小时。
编写程序,将港珠澳大桥的全长以千米表示的单位分别换算成中国古代的**丈、尺单位。**换算公式: 1丈=10尺,1米=3尺。
【代码】
public class BridgeLength {
public static void main(String[] args) {
int length = 55000;
int length1 = length*3;
int length2 = length1/10;
System.out.println("港珠澳大桥的全长:"+length+"米");
System.out.println("港珠澳大桥的全长:"+length1+"尺");
System.out.println("港珠澳大桥的全长:"+length2+"丈");
}
}
3.德邦物流的车厢长4.2米,宽1.9米,高1.9米,快递的箱子长0.5米、宽0.5米、高0.3米。编写程序,计算一 个物流车能装多少个上述规格的箱子。
计算公式:箱子总数= (物流车厢宽/快递箱宽) * (物流车厢长/快递箱长) * (物流车厢高/快递箱高)。最后结果取整数。
【参考代码】
public class BridgeLength {
public static void main(String[] args) {
float CarLength = 4.2f;
float CarWidth = 1.9f;
float CarHeight = 1.9f;
float BoxLength = 0.5f;
float BoxWidth = 0.5f;
float BoxHeight = 0.3f;
int BoxSum = (int)Math.floor((CarWidth/BoxWidth) * (CarLength/BoxLength) * (CarHeight/BoxHeight));
System.out.println("箱子总数:"+BoxSum);
}
}
|