这名用户暂未设置签名。
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
在讨论《90分,求助大佬(一定关注)!》回复:
@[Agnehc](/user/1002848) Thank you!
```c #include using namespace std; int cx() { int Sign=1; char c; int x=0; while((c=getchar())>'9'||c ='0'&&c<='9') x=(x<<3)+(x<<1)+c-'0'; return x*Sign; } void…