这名用户暂未设置签名。
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
一个数学问题,任意一个正数n次开方结果总可以无限趋近于1,那么1经过n次平方为何不为其它数,虽然感觉很白痴,但还是很疑惑
``` #include using namespace std; const int maxn=1e2+10; template void read(T &x) { x=0; char c=getchar();int f=1; for (;!isdigit(c);c=getchar())if(c=='-')f=-1;…