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

Обсуждение задачи 1094. Дисплей

pls help i got WA for about 7 time
Послано BoRN 9 окт 2002 20:50
#include <stdio.h>

char ans[80];

int main()
{
    int i,current=0,maxreach=0;
    char ch;
    for(i=0;i<80;i++)
        ans[i]=' ';
    while((ch=getc(stdin))!=-1){
        if(ch=='\n')    NULL;
        else if(ch=='<'){
            if(current>0)    current-=1;
        }
        else if(ch=='>'){
            if(current>maxreach)
    maxreach=current;
            if(current<79)    current+=1;
            if(current=79)    current=0;
        }
        else{
            if(current>maxreach)
    maxreach=current;
            ans[current]=ch;
            current=(current+1)%80;
        }
    }
    for(i=0;i<=maxreach;i++)
        printf("%c",ans[i]);
    return 0;
}
Re: pls help i got WA for about 7 time
Послано Knot Skycreeper[th] 10 окт 2002 21:16
hey,, piched

it says: "INPUT: The single line of the input contains a sequence of..."

it says: "SINGLE LINE OF INPUT"

i think this would help you...
Thanx, I have been confused of this for about 1/2 hrs!!
Послано Pai.tu64[th] 11 окт 2002 21:33
> hey,, piched
>
> it says: "INPUT: The single line of the input contains a sequence of..."
>
> it says: "SINGLE LINE OF INPUT"
>
> i think this would help you...