braces.c

来自「c和指针 学习c语言必须阅读的书籍之一 提高对C语言的掌握理解能力」· C语言 代码 · 共 46 行

C
46
字号
/*
** Check the pairing of braces in a C program.
*/

#include <stdio.h>
#include <stdlib.h>

int
main()
{
	int	ch;
	int	braces;

	braces = 0;

	/*
	** Read the program character by character.
	*/
	while( (ch = getchar()) != EOF ){
		/*
		** Opening braces are always legal.
		*/
		if( ch == '{' )
			braces += 1;

		/*
		** A closing brace is legal only if matched to an
		** opening brace.
		*/
		if( ch == '}' )
			if( braces == 0 )
				printf( "Extra closing brace!\n" );
			else
				braces -= 1;
	}

	/*
	** No more input: make sure there aren't any opening braces
	** that were not matched.
	*/
	if( braces > 0 )
		printf( "%d unmatched opening brace(s)!\n", braces );

	return EXIT_SUCCESS;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?