摘要: HTML 基础语言 打开DREAMWEAVER,新建HTML。。 body的属性: bgcolor 页面背景色 background 背景壁纸、图片 text 文字颜色 topmargin 上边距 leftmargin 左边距 rightmargin 右边距 bottommargin 下边距 格式控 阅读全文
posted @ 2016-09-08 11:06 C.E 阅读(317) 评论(0) 推荐(0) 编辑
摘要: int a = 5; a++; ++a; Console.WriteLine(a); Console.ReadLine(); int a = 5; //int b = ++a;//a=a+1;int b=a; //int c = a++;//int c=a;a=a+1; int b = a++; i 阅读全文
posted @ 2016-09-08 09:35 C.E 阅读(505) 评论(0) 推荐(0) 编辑
摘要: 注意:枚举类型和结构体都属于值类型。 结构体:就是一个自定义的集合,里面可以放各种类型的元素,用法大体跟集合一样。 一、定义的方法: struct student { public int nianling; public int fenshu; public string name; public 阅读全文
posted @ 2016-09-08 08:25 C.E 阅读(2751) 评论(0) 推荐(0) 编辑