2017年9月24日

摘要: /** * 需求:基本练习 * 思路:类型的一直 * * 步骤:略 */ public class Demo_1{ public static void main(String[] arge) { long l=123456789012345l;//长整型变量 float f=2.4f;//单精度的小数常量 bool... 阅读全文
posted @ 2017-09-24 09:02 技术小子2025 阅读(175) 评论(0) 推荐(0)
摘要: /** * 需求:计算出圆的面积,周长 * 思路:利用公式,调用Math.PI * * 步骤:略 */ public class Demo_1 { public static void main(String[] args) { double radius,C; double area; radius=5.5; area=radius*radius*Math.PI;//圆周... 阅读全文
posted @ 2017-09-24 01:03 技术小子2025 阅读(2837) 评论(0) 推荐(0)
摘要: /** * 需求:计算出速度 * 思路:总路程/总时间 * * 步骤:略 */ public class Demo_1{ public static void main(String[] args) { double V; V=(1.6*24)/(1+40/60+35/3600); System.out.println("The runner speed is" + V +... 阅读全文
posted @ 2017-09-24 00:58 技术小子2025 阅读(732) 评论(0) 推荐(0)

导航