ENG  RUSTimus Online Judge
Online Judge
Задачи
Авторы
Соревнования
О системе
Часто задаваемые вопросы
Новости сайта
Форум
Ссылки
Архив задач
Отправить на проверку
Состояние проверки
Руководство
Регистрация
Исправить данные
Рейтинг авторов
Текущее соревнование
Расписание
Прошедшие соревнования
Правила
вернуться в форум

Обсуждение задачи 1027. Снова D++

I optionally typed some lines and immediately got accepted
Послано XueMao 31 май 2003 14:10
A Important Hint :
look at several important parts of my program

      if (c='(') then
      begin
        if t1<1 then
        begin
          inc(t);
          bj:=1;
        end
        else bj:=0;
      end
...
...
...
      else if (c='*')and(e='(') then {here e means the just pre char}
      begin
        if t1=0 then  {this line ! }
        begin
          c:=' ';
          inc(t1);
          if bj=1 then dec(t);
        end;
      end

I hope that this will help you .