摘要: 样式表主要有内联样式表、内嵌样式表、外部样式表。 内联样式表和HTML联合显示,控制精确,但是可重用性差,冗余较多。 例:<p style="font-size:14px;">内联样式表</p> 内嵌样式表 作为一个独立区域内嵌在网页里,必须写在head标签里面。 <style type="text 阅读全文
posted @ 2016-05-21 19:03 小飛 阅读(196) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 验证码字符串做法 { class Program { static void Main(string[] arg... 阅读全文
posted @ 2016-05-21 14:43 小飛 阅读(241) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.o 阅读全文
posted @ 2016-05-19 22:51 小飛 阅读(436) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.o 阅读全文
posted @ 2016-05-19 22:48 小飛 阅读(108) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.o 阅读全文
posted @ 2016-05-19 00:22 小飛 阅读(277) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.o 阅读全文
posted @ 2016-05-19 00:19 小飛 阅读(138) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication1 { class Program { static void Main(s... 阅读全文
posted @ 2016-05-19 00:06 小飛 阅读(264) 评论(0) 推荐(0) 编辑
摘要: 一、概念conception: 函数体内调用本函数自身,直到符合某一条件不再继续调用。 二、应满足条件factor: (1)有反复执行的过程(调用自身); (2)有跳出反复执行过程的条件(函数出口) 三、例子example 阶乘的计算n!= n*(n-1)*(n-2)*(n-3)*……*1(n>0) 阅读全文
posted @ 2016-05-15 20:23 小飛 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 练习一: 练习二: 练习三: 练习四: 练习五: 练习六: 练习七: 练习八: 阅读全文
posted @ 2016-05-14 21:45 小飛 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 结构体 class Program { struct student { public int num; public string name; public string sex; public one oone; p... 阅读全文
posted @ 2016-05-14 21:17 小飛 阅读(255) 评论(0) 推荐(0) 编辑