Three methods to preform redirection in browser: widnow.location.href window.location.assign window.location.replace 1 & 2, they are pretty much the s
分类:
编程语言 时间:
2016-01-31 21:18:55
阅读次数:
168
1 # include<iostream> 2 # include<string> 3 # include<cstring> 4 using namespace std; 5 struct bigint{ //定义一个大整数类 6 int a[500]; 7 int remain; 8 int i;
分类:
其他好文 时间:
2016-01-31 21:09:08
阅读次数:
207
1 # include<iostream> 2 using namespace std; 3 long long a[1000000]; 4 long long b[1000000]; //b[i]表示数列前i+1个数的最大连续序列和 5 int main(){ 6 long long n=0,i=
分类:
其他好文 时间:
2016-01-31 13:35:29
阅读次数:
157
/* ID: m1500293 LANG: C++ PROG: ditch */ #include <cstdio> #include <cstring> #include <algorithm> #include <vector> #include <queue> using namespace
分类:
编程语言 时间:
2016-01-31 13:12:08
阅读次数:
178
注意问题: 1)字符串是空指针的情况。 2)假设输入的是一个空字符串“” 3)全部‘0’到‘9’之外的字符都是非法的吗?加号和减号是合法输入。 4) 考虑溢出 #include <iostream> using namespace std; bool g_value=false; int atoi(
分类:
其他好文 时间:
2016-01-31 09:33:12
阅读次数:
150
即使捕获了,依然会上抛。具体见:http://blog.csdn.net/hikaliv/article/details/4460180 #include <iostream> using namespace std; class A { public: A(int a) try: m_p(new
分类:
其他好文 时间:
2016-01-31 09:31:15
阅读次数:
140
十六进制转化为十进制 #include<stdio.h> #include<math.h> #include<string> #include<iostream> using namespace std; int main() { string s; cin>>s; int m=s.size();
分类:
其他好文 时间:
2016-01-31 03:05:08
阅读次数:
166
1 #include <cstdio> 2 #include <cstring> 3 #include <algorithm> 4 #include <iostream> 5 #include <queue> 6 #define MAX 9999999 7 8 using namespace std
分类:
其他好文 时间:
2016-01-31 02:48:43
阅读次数:
253
#include<cstdio> #include<string> #include<vector> #include<iostream> using namespace std; int main() { vector<int> a; int i,b; for(i=0;i<56;i++) a.pu
分类:
其他好文 时间:
2016-01-31 02:40:43
阅读次数:
135
系列目录 先补充一个平面化登陆页面代码,自己更换喜欢的颜色背景 @using Apps.Common; @{ Layout = null; } <!DOCTYPE html> <html> <head> <meta content="IE=11.0000" http-equiv="X-UA-Comp
分类:
编程语言 时间:
2016-01-30 22:56:32
阅读次数:
819