码迷,mamicode.com
首页 >  
搜索关键字:using password: yes    ( 53562个结果
sharepoint ECMA using a list template to creating a list in SubSIte
Using a list template to creating a list in SubSItefunction CreateList(){ var clientContext = new SP.ClientContext(siteUrl); var current...
分类:其他好文   时间:2014-06-09 00:18:39    阅读次数:220
对C++ Primer的10.3.9单词转换的思考
#include #include #include #include #include using namespace std;ifstream& open_file(ifstream&,const string&);int main(int argc, char **argv){ map ...
分类:编程语言   时间:2014-06-09 00:04:20    阅读次数:334
zoj1425 Crossed Matchings
【题解】:【代码】: 1 #include 2 #include 3 #include 4 using namespace std; 5 6 int dp[105][105]; 7 int N1,N2; 8 int a[105],b[105]; 9 int main(){10 int...
分类:其他好文   时间:2014-06-08 23:09:50    阅读次数:270
MVC日期格式化的2种方式
假设有这样的一个类,包含DateTime类型属性,在编辑的时候,如何使JoinTime显示成我们期望的格式呢? using System;using System.ComponentModel.DataAnnotations;namespace MvcApplication1.Models{ pub...
分类:Web程序   时间:2014-06-08 22:13:24    阅读次数:704
C++复数运算 重载
近期整理下很久前写的程序,这里就把它放在博文中了,有些比较简单,但是很有学习价值。下面就是自己很久前实现的复数重载代码,这里没有考虑特殊情况,像除法中,分母不为零情况。#include /*#include #include#include#include#include*/using namesp...
分类:编程语言   时间:2014-06-08 21:20:09    阅读次数:316
实例365(13)---------经典数组排序方法------选择排序法
一:使用选择排序法对一维数组进行排序,截图/*选择排序的个人理解: 第一遍筛选,选出其中最大的值,得到值和下标 将最大的值的位置和数组的第一个位置交换 从数组的第二个位置开始第二遍筛选 将其中最大的值的位置和数组的第二个位置交换 直到筛选完数组 */二:代码using Syste...
分类:其他好文   时间:2014-06-08 21:01:12    阅读次数:264
【HDOJ】3789 奥运排序问题
写了个函数指针,这题目很水,但是佷烦。 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 7 #define MAXN 305 8 9 typedef struct {10 int id, g...
分类:其他好文   时间:2014-06-08 20:55:48    阅读次数:202
HDU 3537
翻硬币游戏,纯。。注意要判重 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 7 int a[105],n; 8 9 int sg(int x){10 int tmp=x,cnt=0;11 ...
分类:其他好文   时间:2014-06-08 20:53:49    阅读次数:266
简单排序poj2388
#include #include #include #include using namespace std;int cmp(const void *a,const void *b){ return *(int *)a-*(int *)b;}int main(){ int n; ...
分类:其他好文   时间:2014-06-08 20:51:16    阅读次数:202
poj3278
数组必须开大点#include #include #include #include using namespace std;struct node{ int x,ans;}q[1000005];int jx[]={-1,1};int n,k;int map[1000005],v[100000...
分类:其他好文   时间:2014-06-08 20:48:03    阅读次数:319
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!