摘要: 阅读全文
posted @ 2017-04-14 16:53 BGD160809321 阅读(62) 评论(0) 推荐(0) 编辑
摘要: class Check{ public boolean validate(String name,String password){ if(name.equals("wupeng")&&password.equals("aaaa")) return true; e... 阅读全文
posted @ 2017-03-31 16:05 BGD160809321 阅读(81) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-03-24 16:50 BGD160809321 阅读(74) 评论(0) 推荐(0) 编辑
摘要: Dog dog=new Dog("哈士奇","黑白",2); System.out.println(dog); } } class Dog { private String name; private String color; private int age; public String getName(){ return name; } pub... 阅读全文
posted @ 2017-03-23 20:47 BGD160809321 阅读(89) 评论(1) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-03-21 21:10 BGD160809321 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-03-21 21:10 BGD160809321 阅读(96) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-03-15 11:26 BGD160809321 阅读(85) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-03-10 16:58 BGD160809321 阅读(130) 评论(1) 推荐(0) 编辑
摘要: 12.1#include struct student { char sno[10]; char sname[20]; int age; char sex[3]; char xibie[5]; char tel[11]; int ach; }; int main() { int i; student class3[31]; for(i=0;i #include struct... 阅读全文
posted @ 2016-12-15 23:05 BGD160809321 阅读(210) 评论(2) 推荐(0) 编辑
摘要: 1.冒泡法打印出十个数字的升序 #include void f1(int a[]) { int i,j,temp; for(i=0;ia[j+1]) { temp=a[j+1]; a[j+1]=a[j]; a[j]=temp; } ... 阅读全文
posted @ 2016-11-23 09:25 BGD160809321 阅读(202) 评论(4) 推荐(0) 编辑