码迷,mamicode.com
首页 > 其他好文 > 详细

main

时间:2017-06-01 10:32:23      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:dma   bsp   for   exp   ace   lin   main   return   name   

#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

标签:dma   bsp   for   exp   ace   lin   main   return   name   

原文地址:http://www.cnblogs.com/fish7/p/6927009.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!