User Tools

Site Tools


cpp:input

Input in C++

1)

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.

1)
This article is a stub just to get up and running. Please consider expanding it.
cpp/input.txt · Last modified: 2018/08/28 13:53 by jguerin