摘要: 阅读全文
posted @ 2017-04-03 23:38 BGD160809305 阅读(126) 评论(0) 推荐(0) 编辑
摘要: class Check{ public boolean validate(String name,String password){ if(name.equals("lizhe") &&password.equals("mldn")){ return true; }else{ ... 阅读全文
posted @ 2017-03-31 15:49 BGD160809305 阅读(91) 评论(1) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-03-24 16:53 BGD160809305 阅读(84) 评论(1) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-03-21 22:06 BGD160809305 阅读(57) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-03-17 16:48 BGD160809305 阅读(86) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-03-15 11:35 BGD160809305 阅读(72) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-03-10 16:58 BGD160809305 阅读(93) 评论(1) 推荐(0) 编辑
摘要: #include "stdio.h" int main(void) { struct student_list { char name[10]; int num; char sex[2]; int age; }student[10]; int i; for(i=0;i #include str... 阅读全文
posted @ 2016-12-15 23:35 BGD160809305 阅读(177) 评论(1) 推荐(0) 编辑
摘要: #include void sum(int *p) { int s=0,i; for(i=0;i #include void sort(char *str[]) { int i,j,k; char *temp; for(i=0;i0) { temp=str[k]; st... 阅读全文
posted @ 2016-12-09 21:50 BGD160809305 阅读(142) 评论(1) 推荐(0) 编辑
摘要: #include #include void check(char str[]) { int i,len; len=strlen(str); for(i=0;i #include void bubble_sort_number(int num[],int max) { int i,j,temp; for(i=0;inum[j+1]) ... 阅读全文
posted @ 2016-11-24 22:19 BGD160809305 阅读(99) 评论(1) 推荐(0) 编辑