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

Обсуждение задачи 1219. Symbolic Sequence

MY AC PROGRAM C++!!!
Послано yaho0o0 10 апр 2009 14:57
#include <cstdlib>
#include <ctime>
#include <iostream>
using namespace std;
int main()
{
int i=1;
srand((unsigned)time(0));
char random_integer;
while(i<=1000000)
{
random_integer = (rand()%'z')+1;
if(random_integer>='a'&& random_integer<='z')
{
cout << random_integer;
i++;
}}
cout<<endl;
return 0;
}

Edited by author 10.04.2009 16:54
Re: MY AC PROGRAM C++!!!
Послано Mronoal 11 сен 2011 00:50
Hello,friends

I tested your program is OK. And it's so cool.

But,I don't why?

please.help me !

thanks !

Edited by author 11.09.2011 00:50

Edited by author 11.09.2011 00:51
Re: MY AC PROGRAM C++!!!
Послано luckysundog 11 сен 2011 04:14
It'll be interesting to see the checker for this problem.