#include <cstdio>
#include <cstdlib>
#include <windows.h>
using namespace std;
void KaoGu(int height, int score){
printf("正在考古中,目前高度%d,奖励得分%d……继续考古\n",height,score);
Sleep(2000);
if(height==3009) return ;
KaoGu(height+1,score+(int)sqrt(height));
}
int main(){
printf("自动考古机 ——BY P_Wang\n");
printf("考古现在开始:\n");
Sleep(500);
KaoGu(1,1);//千里之行,始于足下
printf("终于到了第3009层,奖励积分升至∞ ∞ ∞ ∞ ∞ ∞ ∞ ∞ ∞ ∞ ∞ ∞ ∞ ∞!!!\n");
printf("--——考古结束——--\n");
return 0;
}