#include<stdio.h> int main() { int cou=0; char ch; while((ch=getchar())!=‘\n‘) { if(ch==‘{‘) cou++; else if(ch==‘}‘) { if(cou==0) printf("匹配不成功!"); cou--; } } if(cou==0) printf("匹配成功!"); else printf("匹配不成功!"); return 0; }
本文出自 “fun” 博客,请务必保留此出处http://10725723.blog.51cto.com/10715723/1708224
编写一个程序,它从标准输入(终端)读取C源代码,并验证所有的花括号都正确的成对出现。
原文地址:http://10725723.blog.51cto.com/10715723/1708224