我们学校期中考试延期了 只因几 天。
只烤 Chinese,Math,English & Physics.
#include <bits/stdc++.h>
using namespace std;
typedef __uint128_t RP;
RP rp;
void rpKeepIncreasing(RP &rp)
{
while(rp+1>rp)
{
++rp;
system("cls");
printf("rp = %d\n",rp);
}
}
int main()
{
rpKeepIncreasing(rp);
return 0;
}