摘要:
int read() { char ch = getchar(); int x = 0, f = 1; while(ch < '0' || ch > '9') { if(ch == '-') f = -1; ch = getchar(); } while('0' <= ch && ch <= '9') { x = x * 10 + ch - '0'; ch = getchar(); } retur 阅读全文
posted @ 2019-08-17 15:32
Mogeko
阅读(131)
评论(0)
推荐(0)

浙公网安备 33010602011771号