2016年5月16日

将数组里面的单词 倒序排列 例如 How old are you !? I don't understand -> understand don't I ?! you are old How

摘要: public static void main(String[] args) { char[] chars= new String("How old are you !? I don't understand").toCharArray(); System.out.println("the firs 阅读全文

posted @ 2016-05-16 13:13 难知如阴凌沧海 阅读(406) 评论(0) 推荐(0)

2016年5月15日

验证身份证号码是否合法/输入前17位身份证号,然后输出第18位

摘要: package test; /** * 身份证验证 * @author Administrator * */ public class IDCard { private final static int[] FACTOR = new int[]{7,9,10,5,8,4,2,1,6,3,7,9,10 阅读全文

posted @ 2016-05-15 22:19 难知如阴凌沧海 阅读(1686) 评论(0) 推荐(0)

2016年5月8日

java描写的合并排序的递归实现

摘要: package com.stu.find; public class MergeSort { public void merge(int []A,int p,int q,int r) { int nl=q-p+1; int nr=r-q; int [] rArr=new int[nl+1]; int 阅读全文

posted @ 2016-05-08 23:08 难知如阴凌沧海 阅读(832) 评论(0) 推荐(0)

2016年4月24日

约瑟夫问题

摘要: /* * 功能:约瑟夫问题(丢手帕) */ package com.jitao; public class demo3 { public static void main(String[] args) { // TODO Auto-generated method stub CycLink cycl 阅读全文

posted @ 2016-04-24 22:29 难知如阴凌沧海 阅读(180) 评论(0) 推荐(0)

2016年4月17日

删除字符串中字符

摘要: //写一个函数,接收一个字符串作为参数string和一个字符ch作为参数, //返回一个string的副本但是不包含字符ch。 //如string = “Hello”, ch = 'l', 返回“ Heo” #include<iostream> #include<string.h> using na 阅读全文

posted @ 2016-04-17 22:49 难知如阴凌沧海 阅读(257) 评论(0) 推荐(0)

2016年3月30日

软件工程初学随笔二

摘要: 题目:你所在的学校有计算机科学专业和软件工程专业么?相关专业的教学计划和毕业出路有什么不同?你们的老师怎么教与实际相关的技术(例如编程,软件开发)? 阅读有关软件工程和计算机科学的区别的文章,谈谈你的看法。 答:有 在教学上,计算机科学是软件、硬件的理论与实践都有,而软件工程偏向软件的理论与实践。但 阅读全文

posted @ 2016-03-30 22:07 难知如阴凌沧海 阅读(111) 评论(0) 推荐(0)

2016年3月23日

软件工程初学随笔

摘要: Dijkstra曾经提到:“Software engineering, of course,presents itself as another worthy cause,but that is eyewash: if you carefully read its literature and an 阅读全文

posted @ 2016-03-23 22:28 难知如阴凌沧海 阅读(147) 评论(0) 推荐(0)

2016年3月17日

第一次作业

摘要: 题目:软件有很多种: ShrinkWrap (在包装盒子里面的软件); Web APP (基于网页的软件); Internal Software (企业或学校或某组织内部的软件); Games (游戏); Mobile Apps (手机应用); Operating Systems (操作系统); T 阅读全文

posted @ 2016-03-17 23:21 难知如阴凌沧海 阅读(134) 评论(0) 推荐(0)

2016年3月9日

自我介绍

摘要: 姓名:柏志兵 院系&专业:信息工程学院计算机科学与技术 学校:巢湖学院 当下正在学习邹欣的《构建之法:现代软件工程》(第二版) 未来的期望:天下无二道,圣人无两心。 掌握规范的代码编写习惯; 培养工程化的思维以及团队协作能力; 理论联系实际,在实践中积累经验; 在未来地日子里,希冀自己与同伴能够每天 阅读全文

posted @ 2016-03-09 19:42 难知如阴凌沧海 阅读(257) 评论(0) 推荐(0)

导航