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 2138. The Good, the Bad and the Ugly

не понимаю почему cin не считывает строку
Posted by Aho 5 May 2023 00:20
#include <iostream>

int main()
{
    long long int y1;
    int y2, y3, y4;

    std::cin;
    std::cin >> y1;
    y4 = y1 / 16777216;
    y1 = y1 % 16777216;
    y3 = y1 / 65536;
    y1 = y1 % 65536;
    y2 = y1 / 256;
    y1 = y1 % 256;
    y1 = y1 * 16777216 + y2 * 65536 + y3 * 256 + y4;
    std::cout << y1;
    return 0;
}
в данном коде есть проблема: в данном компиляторе первый cin ничего не делает и второй получает на вход строку.