Search found 2 matches

by nameofevil
Tue Feb 27, 2007 4:46 pm
Forum: Volume 6 (600-699)
Topic: 673 - Parentheses Balance
Replies: 243
Views: 79802

i see, :) Thx
by nameofevil
Sun Feb 25, 2007 4:08 pm
Forum: Volume 6 (600-699)
Topic: 673 - Parentheses Balance
Replies: 243
Views: 79802

I also got WA with my code, and it seem correct in all sample inputs I fund in this forum. plz help :(


#include<stdio.h>
#include<string.h>
int main(){
int N,index,stop,string[130];
bool res;
char str[130] ;
if(fgets(str,129,stdin) == NULL){
return 1;
}
sscanf(str,"%d\n",&N);
while(N ...

Go to advanced search