欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

如何编写程序,使它从标准输入读取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;
}

程序运行结果如下:


如何编写程序,使它从标准输入读取C源代码,并验证所有的花括号都正确的成对出现?

相关标签: C语言典型示例