ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Discussion of Problem 2000. Grand Theft Array V

ввод данных
Posted by Denis 18 Jul 2014 03:38
существует ли способ записи данных в массив без использования строк??
Re: ввод данных
Posted by Dron-elektron 29 Jul 2014 22:21
А причем тут строка и массив в принцепи? Берем и записываем в нужный индекс считанное число.

// В случае C++
#include <iostream>
#include <vector>

int main()
{
    int n;
    int start1, start2;
    std::vector<int> v;

    std::cin >> n;

    v.resize(n);

    for (size_t i = 0; i < n; i++)
        std::cin >> v[i];

    std::cin >> start1 >> start2;

    // Решение

    return 0;
}

Edited by author 29.07.2014 22:22