输入外挂

来源:互联网 发布:易语言准星源码 编辑:程序博客网 时间:2024/05/21 05:57
inline int Input(){    int res=0,f=1,c;    while(!isdigit(c = getchar()) && c!='-');    c=='-' ? f=0 : res=c-'0';    while(isdigit(c = getchar()))        res = res*10 + c-'0';    return f ? res : -res;}

原创粉丝点击