最新 最热

hdu1089

#include<iostream> using namespace std; int main() { int n,m,s; while(cin>>n>>m) { s=n+m; cout<<s<<endl; } return 0; }

2018-06-04
0

hdu1090

#include<iostream>using namespace std;int main(){ int n; cin>>n; while(n--){ int a,b; cin>>a>>b; cout<<a+b<<endl; } ...

2018-06-04
1

hdu1076

#include<iostream> using namespace std; int main() { int cases; int k; cin>>cases; while(cases--) { int y,n; ...

2018-06-04
1

hdu1046

#include<iostream> #include<cmath> using namespace std; int main() { int T,t=0,m,n; cin>>T; while(T--) { cin>>m>>n;...

2018-06-04
1

[译] 使用 leanback 的 DiffCallback: 和 DiffUtil 回调之间的区别

原文地址:Using leanback’s DiffCallback: The difference between the DiffUtil callbacks原文作者:Benjamin Baxter译文出自:掘金翻译计划本文永久链接:github.com/xitu/gold-m…译者:LeeSniper校......

2018-05-31
1

Nebula3学习笔记(2): Hello World

1: #include 2: #include 3: #include 4: #include 5: 6: using namespace Core 7: 8: 9: 10: 11: PtrCoreServer coreServer CoreServerCreate12: c...

2018-05-23
0

巧用Using跳过异常捕获

前言    这里主要说一个使用using躲过异常的小技巧。    我原来就遇到过类似的问题好几次了,也没想到办法,直接有一天,调试得实在受不了了,才认真想了以下的解决方案。问题    原来的代码是这样的:public abstrac...

2018-01-26
1

提高WCF服务并发能力的简单处理办法

步骤:1.把同样的WCF服务,在多个端口上"启动"(即同时运行多个wcf的实例,但每个实例都监听不同的端口)2.用svcutil.exe生成的代理类,里面有N多构造函数的重载版本,观察一下类似下面的这个版本 public AstroServiceClient(st...

2018-01-23
1

Leetcode 29 Divide Two Integers 位操作的巧妙运用

Divide two integers without using multiplication, division and mod operator. If it is overflow, return MAX_INT.题意很简单,实现两数除法,但是不能用乘法,除法和取模。怎么样?第一感觉就是用减法,但是被除......

2018-01-12
1

Leetcode 137 Single Number II

Given an array of integers, every element appears three times except for one. Find that single one.

2018-01-12
1