F.A.Q
Hand In Hand
Online Acmers
Problem Archive
Realtime Judge Status
Authors Ranklist
 
     C/C++/Java Exams     
ACM Steps
Go to Job
Contest LiveCast
ICPC@China
Best Coder beta
VIP | STD Contests
    DIY | Web-DIY beta
Author ID 
Password 
 Register new ID

View Compilation Error

0_0_28063116_10943.cpp:13:2: error: stray '#' in program
     int cnt;
  ^
0_0_28063116_10943.cpp:13:9: error: stray '#' in program
     int cnt;
         ^
0_0_28063116_10943.cpp:14:2: error: stray '#' in program
     struct node *next[26];
  ^
0_0_28063116_10943.cpp:14:9: error: stray '#' in program
     struct node *next[26];
         ^
0_0_28063116_10943.cpp:15:2: error: stray '#' in program
     node()
  ^
0_0_28063116_10943.cpp:15:9: error: stray '#' in program
     node()
         ^
0_0_28063116_10943.cpp:16:2: error: stray '#' in program
     {
  ^
0_0_28063116_10943.cpp:16:9: error: stray '#' in program
     {
         ^
0_0_28063116_10943.cpp:17:2: error: stray '#' in program
         cnt = 0;
  ^
0_0_28063116_10943.cpp:17:9: error: stray '#' in program
         cnt = 0;
         ^
0_0_28063116_10943.cpp:17:16: error: stray '#' in program
         cnt = 0;
                ^
0_0_28063116_10943.cpp:17:23: error: stray '#' in program
         cnt = 0;
                       ^
0_0_28063116_10943.cpp:18:2: error: stray '#' in program
         memset(next,0,sizeof(next));
  ^
0_0_28063116_10943.cpp:18:9: error: stray '#' in program
         memset(next,0,sizeof(next));
         ^
0_0_28063116_10943.cpp:18:16: error: stray '#' in program
         memset(next,0,sizeof(next));
                ^
0_0_28063116_10943.cpp:18:23: error: stray '#' in program
         memset(next,0,sizeof(next));
                       ^
0_0_28063116_10943.cpp:19:2: error: stray '#' in program
     }
  ^
0_0_28063116_10943.cpp:19:9: error: stray '#' in program
     }
         ^
0_0_28063116_10943.cpp:24:2: error: stray '#' in program
      node*q=root;
  ^
0_0_28063116_10943.cpp:24:9: error: stray '#' in program
      node*q=root;
         ^
0_0_28063116_10943.cpp:24:16: error: stray '#' in program
      node*q=root;
                ^
0_0_28063116_10943.cpp:25:2: error: stray '#' in program
      node *temp=NULL;
  ^
0_0_28063116_10943.cpp:25:9: error: stray '#' in program
      node *temp=NULL;
         ^
0_0_28063116_10943.cpp:25:16: error: stray '#' in program
      node *temp=NULL;
                ^
0_0_28063116_10943.cpp:26:2: error: stray '#' in program
      for(int i=0;i<strlen(ss);i++)
  ^
0_0_28063116_10943.cpp:26:9: error: stray '#' in program
      for(int i=0;i<strlen(ss);i++)
         ^
0_0_28063116_10943.cpp:26:16: error: stray '#' in program
      for(int i=0;i<strlen(ss);i++)
                ^
0_0_28063116_10943.cpp:27:2: error: stray '#' in program
      {
  ^
0_0_28063116_10943.cpp:27:9: error: stray '#' in program
      {
         ^
0_0_28063116_10943.cpp:27:16: error: stray '#' in program
      {
                ^
0_0_28063116_10943.cpp:28:2: error: stray '#' in program
          int v=ss[i]-'a';
  ^
0_0_28063116_10943.cpp:28:9: error: stray '#' in program
          int v=ss[i]-'a';
         ^
0_0_28063116_10943.cpp:28:16: error: stray '#' in program
          int v=ss[i]-'a';
                ^
0_0_28063116_10943.cpp:28:23: error: stray '#' in program
          int v=ss[i]-'a';
                       ^
0_0_28063116_10943.cpp:28:30: error: stray '#' in program
          int v=ss[i]-'a';
                              ^
0_0_28063116_10943.cpp:29:2: error: stray '#' in program
          if(q->next[v] == NULL)
  ^
0_0_28063116_10943.cpp:29:9: error: stray '#' in program
          if(q->next[v] == NULL)
         ^
0_0_28063116_10943.cpp:29:16: error: stray '#' in program
          if(q->next[v] == NULL)
                ^
0_0_28063116_10943.cpp:29:23: error: stray '#' in program
          if(q->next[v] == NULL)
                       ^
0_0_28063116_10943.cpp:29:30: error: stray '#' in program
          if(q->next[v] == NULL)
                              ^
0_0_28063116_10943.cpp:30:2: error: stray '#' in program
         {
  ^
0_0_28063116_10943.cpp:30:9: error: stray '#' in program
         {
         ^
0_0_28063116_10943.cpp:30:16: error: stray '#' in program
         {
                ^
0_0_28063116_10943.cpp:30:23: error: stray '#' in program
         {
                       ^
0_0_28063116_10943.cpp:31:2: error: stray '#' in program
             temp = new node;
  ^
0_0_28063116_10943.cpp:31:9: error: stray '#' in program
             temp = new node;
         ^
0_0_28063116_10943.cpp:31:16: error: stray '#' in program
             temp = new node;
                ^
0_0_28063116_10943.cpp:31:23: error: stray '#' in program
             temp = new node;
                       ^
0_0_28063116_10943.cpp:31:30: error: stray '#' in program
             temp = new node;
                              ^
0_0_28063116_10943.cpp:31:37: error: stray '#' in program
             temp = new node;
                                     ^
0_0_28063116_10943.cpp:32:2: error: stray '#' in program
             q->next[v] = temp;
  ^
0_0_28063116_10943.cpp:32:9: error: stray '#' in program
             q->next[v] = temp;
         ^
0_0_28063116_10943.cpp:32:16: error: stray '#' in program
             q->next[v] = temp;
                ^
0_0_28063116_10943.cpp:32:23: error: stray '#' in program
             q->next[v] = temp;
                       ^
0_0_28063116_10943.cpp:32:30: error: stray '#' in program
             q->next[v] = temp;
                              ^
0_0_28063116_10943.cpp:32:37: error: stray '#' in program
             q->next[v] = temp;
                                     ^
0_0_28063116_10943.cpp:33:2: error: stray '#' in program
             q = q->next[v];
  ^
0_0_28063116_10943.cpp:33:9: error: stray '#' in program
             q = q->next[v];
         ^
0_0_28063116_10943.cpp:33:16: error: stray '#' in program
             q = q->next[v];
                ^
0_0_28063116_10943.cpp:33:23: error: stray '#' in program
             q = q->next[v];
                       ^
0_0_28063116_10943.cpp:33:30: error: stray '#' in program
             q = q->next[v];
                              ^
0_0_28063116_10943.cpp:33:37: error: stray '#' in program
             q = q->next[v];
                                     ^
0_0_28063116_10943.cpp:34:2: error: stray '#' in program
             (q->cnt)+=k;
  ^
0_0_28063116_10943.cpp:34:9: error: stray '#' in program
             (q->cnt)+=k;
         ^
0_0_28063116_10943.cpp:34:16: error: stray '#' in program
             (q->cnt)+=k;
                ^
0_0_28063116_10943.cpp:34:23: error: stray '#' in program
             (q->cnt)+=k;
                       ^
0_0_28063116_10943.cpp:34:30: error: stray '#' in program
             (q->cnt)+=k;
                              ^
0_0_28063116_10943.cpp:34:37: error: stray '#' in program
             (q->cnt)+=k;
                                     ^
0_0_28063116_10943.cpp:35:2: error: stray '#' in program
          }
  ^
0_0_28063116_10943.cpp:35:9: error: stray '#' in program
          }
         ^
0_0_28063116_10943.cpp:35:16: error: stray '#' in program
          }
                ^
0_0_28063116_10943.cpp:35:23: error: stray '#' in program
          }
                       ^
0_0_28063116_10943.cpp:35:30: error: stray '#' in program
          }
                              ^
0_0_28063116_10943.cpp:36:2: error: stray '#' in program
          else{
  ^
0_0_28063116_10943.cpp:36:9: error: stray '#' in program
          else{
         ^
0_0_28063116_10943.cpp:36:16: error: stray '#' in program
          else{
                ^
0_0_28063116_10943.cpp:36:23: error: stray '#' in program
          else{
                       ^
0_0_28063116_10943.cpp:36:30: error: stray '#' in program
          else{
                              ^
0_0_28063116_10943.cpp:37:2: error: stray '#' in program
         &#


Hangzhou Dianzi University Online Judge 3.0
Copyright © 2005-2024 HDU ACM Team. All Rights Reserved.
Designer & Developer : Wang Rongtao LinLe GaoJie GanLu
Total 0.000000(s) query 1, Server time : 2024-11-16 10:40:58, Gzip enabled