摘要: 选择法 冒泡 阅读全文
posted @ 2017-12-18 14:48 戒指和书,我看到了我想要的幸福 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 练习12 package cn.ch.w; public abstract class Person { private String name; private int age; public String getName() { return name; } public void setNam 阅读全文
posted @ 2017-11-20 10:37 戒指和书,我看到了我想要的幸福 阅读(289) 评论(1) 推荐(0) 编辑
摘要: public class Circle { private double radius; public Circle(){ this.radius=1; } public Circle(double radius){ this.radius=radius; } public double get... 阅读全文
posted @ 2017-11-20 10:18 戒指和书,我看到了我想要的幸福 阅读(216) 评论(0) 推荐(0) 编辑
摘要: package cn.person.www; public class person { public int id; public String name; public int age; public String city; public String introduce() { return 阅读全文
posted @ 2017-11-12 20:00 戒指和书,我看到了我想要的幸福 阅读(460) 评论(0) 推荐(1) 编辑
摘要: /*3-1 * 功能:产生随机数来执行减法,并从用户中获得数字用以判断正误。 */import java.util.Scanner; public class AdditionQuiz { public static void main(String[] args) { int number1=(i 阅读全文
posted @ 2017-10-23 14:17 戒指和书,我看到了我想要的幸福 阅读(166) 评论(0) 推荐(0) 编辑
摘要: . import java.util.Scanner; public class T { public static void main(String[] args) { System.out.println("5+5="+5+5); }} . (1) import java.util.Scanne 阅读全文
posted @ 2017-10-09 10:03 戒指和书,我看到了我想要的幸福 阅读(284) 评论(0) 推荐(0) 编辑
摘要: 输出一个长整型的变量 public class Long{ public static void main(String[] args) { long l=123456789012345l;//java中默认类型为Int型 System.out.println(l); } 输出一个单精度的小数常量 阅读全文
posted @ 2017-09-25 09:58 戒指和书,我看到了我想要的幸福 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 1.两点间距离import java.util.Scanner;public class test { public static void main(String[] args) { Scanner Hy=new Scanner(System.in); double x1,x2,y1,y2; Sy 阅读全文
posted @ 2017-09-17 21:31 戒指和书,我看到了我想要的幸福 阅读(171) 评论(0) 推荐(0) 编辑
摘要: public class my{ public static void main(String[] args){ int a=35+100*60; //将跑步时间转化为秒 double b=2.0*1.6; //将跑步路程转化为公里 System.out.println("平均速度:"+ a/360 阅读全文
posted @ 2017-09-17 21:16 戒指和书,我看到了我想要的幸福 阅读(186) 评论(0) 推荐(0) 编辑
摘要: Public class Area { public static void main(String[] args) { double radius; double area; double PI=3.14159; double circle; radius =5.5; circle=2 * PI 阅读全文
posted @ 2017-09-10 22:09 戒指和书,我看到了我想要的幸福 阅读(145) 评论(2) 推荐(0) 编辑