Search found 3 matches

by Khriz
Thu Mar 11, 2004 11:44 am
Forum: Volume 2 (200-299)
Topic: 245 - Uncompress
Replies: 40
Views: 13128

245 WA

Hi,

I receive WA in the problem 245 and I don't know why, all my results go ok, can someone help me. I've used a tail to go back to search the word indicated by the number.

[cpp]
#include <string>
#include <ctype.h>
#include <iostream>

using namespace std;

struct nodecua {
char paraula[51 ...
by Khriz
Thu Mar 04, 2004 9:12 pm
Forum: Volume 2 (200-299)
Topic: 245 - Uncompress
Replies: 40
Views: 13128

sorry for the tabs
[cpp]
#include <string>
#include <ctype.h>
#include <iostream>

using namespace std;

struct nodecua {
char paraula[51];
nodecua * anterior;
};

nodecua* buscarParaula(int, nodecua*);

int main() {
char c, paraula[51];
int i, pos;
nodecua * actual;
nodecua * anterior ...
by Khriz
Thu Mar 04, 2004 9:10 pm
Forum: Volume 2 (200-299)
Topic: 245 - Uncompress
Replies: 40
Views: 13128

245-Problems, don't Know why I get WA

Can someone help me, I don't know why it doesn't work. The source code is a little poor. (I'm a beginner)

#include <string>
#include <ctype.h>
#include <iostream>

using namespace std;

struct nodecua {
char paraula[51];
nodecua * anterior;
};

nodecua* buscarParaula(int, nodecua*);

int main ...

Go to advanced search