上一页 1 ··· 293 294 295 296 297 298 299 300 301 ··· 329 下一页
摘要: 近日,《PCWorld》杂志周五刊登分析文章称,在与Chrome浏览器的竞争中,火狐浏览器正逐渐失去计算机专家的青睐。尽管Mozilla基金会仍致力于一些宏大的目标,但火狐浏览器已经宣告死亡。 Google近日推出了Linux版的Chrome。即使是在戴尔Mini 9这种性能不强的上网本中,Chrome仍然能够带来快速的互联网浏览体验,尤其是在登录Gmail和Google文档等大量使用JavaSc... 阅读全文
posted @ 2009-03-29 22:54 emanlee 阅读(328) 评论(0) 推荐(0) 编辑
摘要: 英国专业商业信息提供商Incisive Media旗下网站vnunet.com周六刊文评出IT行业十大“圣地”,北京中关村、中国台湾均名列其中.以下是具体情况:1、硅谷 这里是IT世界毫无争议的中心.惠普、Sun、苹果、思科、谷歌、雅虎、英特尔、塞门铁克、AMD等等,硅谷里闪耀着太多辉煌的名字.硅谷的历史基本上就是 IT业的历史,这里记录了无数IT业的历史性时刻.促使硅谷成为世界IT业中心的原因有... 阅读全文
posted @ 2009-03-29 22:51 emanlee 阅读(440) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2009-03-29 21:24 emanlee 阅读(1413) 评论(0) 推荐(0) 编辑
摘要: -----------------------------------------编号:一题目:选择结构程序设计 目的:见指导书110页。 实验内容:教材:习题3.6, 习题3.7习题3.6:参考例1.2,使用if语句,或者使用条件表达式。习题3.7:参考教材例题3.13,教材299页的math.h,不要使用 10<=x<20 . “无定义”,其余值用print... 阅读全文
posted @ 2009-03-27 22:57 emanlee 阅读(755) 评论(0) 推荐(0) 编辑
摘要: 问题描述(Description): When you use the Microsoft Visual Studio 2005 IDE, a lockup condition may occur, and the IDE stops responding (hangs). Additionally, you cannot close the IDE, and you may receive ... 阅读全文
posted @ 2009-03-26 19:10 emanlee 阅读(700) 评论(0) 推荐(0) 编辑
摘要: C语言程序设计 答疑安排(2009春季 1-10周)地点:8-309,或者8-409,如果8-309,8-409没开门则到8-308教室。时间:黑老师,第六周,周四下午,2:10-4:00金老师,第七周,周二下午,4:10-6:00王老师,第八周,周三晚上,7:30-9:00王老师,第九周,周三晚上,7:30-9:00李老师,第十周,周三下午,4:10-6:00李老师,第十周,周五下午,2:10-... 阅读全文
posted @ 2009-03-24 18:11 emanlee 阅读(352) 评论(0) 推荐(0) 编辑
摘要: /* 牛顿迭代法求解方程 在2.0附近的一个根 */ #include#includevoid main(){ double x1,x,f,f1; scanf("%lf",&x1); do { x=x1; f=x*x*x*x-3*pow(x,3)+1.5*x*x-4; f1=4*pow(x,3)-9*x*x+3*x; x1=x-f/f1; }while(fabs... 阅读全文
posted @ 2009-03-22 17:11 emanlee 阅读(7282) 评论(0) 推荐(0) 编辑
摘要: HTML 4.0 Event Attributes New to HTML 4.0 is the ability to let HTML events trigger actions in the browser, like starting a JavaScript when a user clicks on an HTML element. Below is a list of attrib... 阅读全文
posted @ 2009-03-19 22:20 emanlee 阅读(434) 评论(0) 推荐(0) 编辑
摘要: Quick reference: .Any character except newline. \.A period (and so on for \*, \(, \\, etc.) ^The start of the string. $The end of the string. \d,\w,\sA digit, word character [A-Za-z0-9_], or whit... 阅读全文
posted @ 2009-03-19 18:36 emanlee 阅读(1190) 评论(0) 推荐(0) 编辑
摘要: 正则表达式是一个描述字符模式的对象。 Javascrīpt的RegExp对象和String对象定义了使用正则表达式来执行强大的模式匹配和文本检索与替换函数的方法. 在Javascrīpt中,正则表达式是由一个RegExp对象表示的.当然,可以使用一个RegExp()构造函数来创建RegExp对象,也 阅读全文
posted @ 2009-03-19 18:35 emanlee 阅读(353) 评论(0) 推荐(0) 编辑
上一页 1 ··· 293 294 295 296 297 298 299 300 301 ··· 329 下一页