摘要: 1 /** 2 * 是否为数字 3 */ 4 int isDigit(char ch){ 5 return ch-'0'>=0 && ch -'9'<=0; 6 } 7 /** 8 * 9 */10 int isLetter(char ch){11 return (ch-'a'>=0 && ch-'z'<=0) || (ch-'A'>=0 && ch-'Z'<=0);12 } 阅读全文
posted @ 2012-10-29 15:11 陈哈哈 阅读(1169) 评论(0) 推荐(0) 编辑
摘要: 因为编译原理要用到,记录一下。 1 #include <stdio.h> 2 3 int main() 4 { 5 char filename[] = "D:\\阶段性学习\\大三上\\1.课程学习\\编译原理\\0903\\实验二\\test.c"; //文件名 6 FILE *fp; 7 char StrLine[1024]; //每行最大读取的字符数 8 if((fp = fopen(filename,"r")) == NULL) //判断文件是否存在及可读 9 { 10 prin... 阅读全文
posted @ 2012-10-29 00:41 陈哈哈 阅读(100141) 评论(0) 推荐(3) 编辑