码迷,mamicode.com
首页 > 2015年04月04日 > 全部分享
[nginx] 对UA为空的请求返回403
nginx blocking blank user agent . sometime apps’ backgroud request always visit a url, and these requests’ user agent is black, so I want block them. 针对一个location的nginx配置 location / {...
分类:其他好文   时间:2015-04-04 00:03:15    阅读次数:201
poj 3970 Party 最小公倍数
题意: 给n个数,求它们的最小公倍数。 分析: lcm(a,b)==a*b/gcd(a,b); 代码: //poj 3970 //sep9 #include using namespace std; typedef long long ll; ll gcd(ll a,ll b) { return a%b==0?b:gcd(b,a%b); } int main() { int n; ...
分类:其他好文   时间:2015-04-04 00:01:43    阅读次数:500
1396条   上一页 1 ... 80 81 82 83
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!