User Tools

Site Tools


cpp:input

This is an old revision of the document!


Input in C++

Faster Input

fast_io.cpp
#include <iostream>
 
using namespace std;
 
int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
 
    return 0;
}

Fastest Input

Sorry, it's just difficult to beat scanf.

cpp/input.1535482349.txt.gz · Last modified: 2018/08/28 13:52 by jguerin