【问题描述】对任意输入的一串字符,在某文档中进行匹配,并给出匹配结果。
【测试数据】
(1)输入的一行程序,与源代码匹配,源程序自行选择;
(2)输入的一串字符,在某文本文件中匹配,文本文件自行选择。
#include <stdio.h> #include "stdlib.h" #include <iostream> #include<fstream> using namespace std; //宏定义 #define TRUE 1 #define FALSE 0 #define OK 1 #define ERROR 0 #define MAXSTRLEN 100 typedef char SString[MAXSTRLEN + 1]; /* *************** ** 字符串的匹配 ** @autho 刘辉 ** @time 2016年11月7日 *************** */ int length(SString S) //计算字符数组的长度 { int i=0; while(S[i]!='