#include <stdio.h>
int main()
{
int ch,i=0;
ch = getchar();
if ( ch=='}')
printf("unmatched!");
while ( ch !=EOF)
{
if( ch =='{')
i++;
if( ch =='}')
i--;
ch = getchar();
}
{
if( i == 0)
printf("matched!");
else
printf("unmatched!");
}
return 0;
1.编写一个程序,他从标准输入读取C源代码,并验证所有的花括号都正确的成对出现。
最新推荐文章于 2019-10-19 13:01:06 发布