[恢]hdu 1870

2011-12-15 04:41:23

地址:http://acm.hdu.edu.cn/showproblem.php?pid=1870

题意:中文。。。

代码:

# include <stdio.h>


char str[1010] ;


int main ()
{
int p, i ;
while(gets(str))
{
p = 0 ;
for (i = 0 ; str[i] && str[i] != 'B' ; i++)
{
if (str[i] == '(') p++ ;
else if (str[i] == ')') p-- ;
}
printf ("%d\n", p) ;
}
return 0 ;
}



posted @ 2012-01-06 15:36  Seraph2012  阅读(169)  评论(0编辑  收藏  举报