循环在第一次迭代中自行运行

时间:2019-07-10 12:25:16

标签: c

该问题通常被称为Minesweeper问题(skienna编写的编程竞赛培训手册)。

https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=1130

我写了一些代码来提供节省空间的解决方案,但我不知道为什么循环怪异!

var data={
    some_var:'some value'
}
jQuery.post('/?wc-ajax=myaction',data)
.done(function(result){
    console.log('ajax request completed. result=',result);
})
.fail(function(){
    console.log('ajax request failed. check network log.');
});
https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=1130上可以找到

期望的输出

0 个答案:

没有答案