摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 九乘九乘法表格{ class Program { static void Main(str... 阅读全文
posted @ 2015-08-05 21:38 地狱猫 阅读(408) 评论(0) 推荐(0) 编辑
摘要: /// /// 是否为日期型字符串 /// /// 日期字符串(2008-05-08) /// public static bool IsDate(string StrSource) { ... 阅读全文
posted @ 2015-08-02 14:13 地狱猫 阅读(648) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 三个数中找最大{ class Program { static void Main(str... 阅读全文
posted @ 2015-08-02 14:06 地狱猫 阅读(119) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 闰年平年{ class Program { static void Main(string... 阅读全文
posted @ 2015-08-02 14:05 地狱猫 阅读(146) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 判断奇偶{ class Program { static void Main(string... 阅读全文
posted @ 2015-08-02 14:04 地狱猫 阅读(159) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 电话运营商电话{ class Program { static void Main(str... 阅读全文
posted @ 2015-08-02 14:03 地狱猫 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 优先级优先级【高到低】:第一级:圆括号【()】、下标运算符【[]】、分量运算符的指向结构体成员运算符【->】、结构体成员运算符【.】第二级:逻辑非运算符【!】、按位取反运算符【~】、自增自减运算符【++ --】、负号运算符【-】、类型转换运算符【(类型)】、指针运算符和取地址运算符【*和&】、长度运... 阅读全文
posted @ 2015-07-31 22:18 地狱猫 阅读(321) 评论(0) 推荐(0) 编辑
摘要: 运算符、方括号作为下标运算符)分类C的运算符有以下几类:1.算术运算符:* - + /2.关系运算符: > = > ~ | ^ &5.赋值运算符:=及扩展赋值运算符6.条件运算符:?:7.逗号运算符:,8.指针运算符:*和&9.求字节数运算符:sizeof10.强制类型转换运算符:(类型)11.分量... 阅读全文
posted @ 2015-07-31 22:17 地狱猫 阅读(152) 评论(1) 推荐(0) 编辑
摘要: http://www.cnblogs.com/Autumoon/archive/2008/08/18/1270685.html 阅读全文
posted @ 2015-07-31 22:13 地狱猫 阅读(104) 评论(0) 推荐(0) 编辑
摘要: 转十进制: 41BD(16)=4*163+1*162+11*161+13*160=16384+256+176+13=16829 A10C.8(16)=10*163+1*162+0*161+12*160+8*16-1=40960+256+0+12+0.5=41228.5 146.1(8)=1*82+4... 阅读全文
posted @ 2015-07-30 09:03 地狱猫 阅读(233) 评论(1) 推荐(0) 编辑