摘要:
某个字符串中有左右括号,和常见的数学式子一样,任何一个左括号都是从内向外的与它在右边、距离最近的右括号相匹配。编写一个程序找出无法匹配的左括号与右括号,并在下方标出来。自己模仿:#include "stdafx.h"#include <iostream>using namespace std;const int SIZE = 100;void ParCount(char line[], char error[], int &flags);int _tmain(int argc, _TCHAR* argv[]){ char line[] = "( 阅读全文
posted @ 2011-08-15 22:39 ChessYoung 阅读(268) 评论(0) 推荐(0) 编辑