OI快读
Posted dudujerry
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了OI快读相关的知识,希望对你有一定的参考价值。
不必多说。
#include <cstdio> #include <cstring> int read(){ int x = 0,f = 1; char c = getchar(); while(c < ‘0‘ || c > ‘9‘) { if(c == ‘-‘) f = -1; c = getchar(); } while(c>= ‘0‘ && c<= ‘9‘){ x = x*10 + c-‘0‘; c = getchar(); } return x*f; } int main() { for(int i = 1; i <= 5; i ++){ int x = read(); printf("%d",x); } return 0; }
以上是关于OI快读的主要内容,如果未能解决你的问题,请参考以下文章