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

Обсуждение задачи 1000. A+B Problem

problems with C++ compiler on timus
Послано .Net, Java - any pcode sucks 15 апр 2007 01:22
#include <stdio.h>


class C {

  struct A;
  struct B {
    int i;
    A * a;//compilation error is here on "A" letter
  };

  struct A {
    int j;
  };

};


void main() {
  int i, j;
  scanf("%d %d", &i, &j);
  printf("%d", i+j);
}


this causes compilation error. But everything is
allowed by C++ standart and compiled properly in MSVS.Net
2003 and Borland C++ Builder.

Admins, please check and fix that.