如何编写程序,使它从标准输入读取C源代码,并验证所有的花括号都正确的成对出现?
程序员文章站
2022-05-12 12:31:48
...
编写一个程序,它从标准输入读取C源代码,并验证所有的花括号都正确的成对出现。
#include <stdio.h>
int main()
{
int ch = 0;
int count = 0;
while ((ch=getchar())!=EOF)
{
if (ch == '{')
{
count++;
}
else if (ch == '}' && count == 0)
{
printf("不匹配\n");
return 0;
}
else if (ch == '}' && count != 0)
{
count--;
}
}
if (count == 0)
{
printf("匹配\n");
}
else
{
printf("不匹配\n");
}
return 0;
}
程序运行结果如下:
上一篇: 2020牛客暑期多校训练营(第二场)Boundary
下一篇: 总结——c语言中的操作符