| ||||||||||
| Online Judge | Problem Set | Authors | Online Contests | User | ||||||
|---|---|---|---|---|---|---|---|---|---|---|
| Web Board Home Page F.A.Qs Statistical Charts | Current Contest Past Contests Scheduled Contests Award Contest | |||||||||
Re:草,为什么不用数组就能过啊?In Reply To:草,为什么不用数组就能过啊? Posted by:flyxian at 2007-06-05 14:00:55 > int main()
> {
> int flag = 0;
> char c;
> while( ( c = getchar() ) != EOF )
> {
> if( c == '"' && flag == 0 )
> {
> printf( "``" );
> flag = 1;
> }
> else
> if( c == '"' && flag == 1 )
> {
> printf( "\'\'" );
> flag = 0;
> }
> else putchar( c );
> }
> return 0;
> }
其实我用数组也是可以AC的,只要在数组中存放字符结束时再在后面以为存放一个结束符号'\0'即可!
Followed by: Post your reply here: |
All Rights Reserved 2003-2013 Ying Fuchen,Xu Pengcheng,Xie Di
Any problem, Please Contact Administrator