main
Posted fish7
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了main相关的知识,希望对你有一定的参考价值。
#include "stdio.h"
#include "map"
#include "string"
using namespace std;
// global
map<string, int> calcRslt;
int BEST_SCORE;
// funcs declare
void readMapsRslt();
void globalInit();
void proc();
int main()
{
globalInit();
readMapsRslt();
proc();
return 0;
}
void globalInit()
{
}
void readMapsRslt()
{
}
void exploreFromHere(int x, int y)
{
}
void proc()
{
for (int i=1; i<=10; ++i) {
for (int j=1; j<=10; ++j) {
int timestamp_s = 1;
exploreFromHere(i, j);
int timestamp_e = 1;
int timeConsume = 1;
printf("尝试(%d,%d),耗时:%d", i, j, timeConsume);
}
}
}
以上是关于main的主要内容,如果未能解决你的问题,请参考以下文章