1 #include 2 3 using namespace std; 4 5 int
is_prime(int ); 6 int main() 7 { 8 int x,y,val; 9 while (cin>>x>>y
&& x||y)10 {11 ...
分类:
其他好文 时间:
2014-05-16 22:43:26
阅读次数:
335
复习一下单链表的常用操作,包括单链表的创建、插入、删除、排序、逆置以及打印输出等。#includeusing namespace std;typedef
struct Single_link{ int data; struct Single_link *next;}node;//单链表的...
分类:
其他好文 时间:
2014-05-16 22:14:34
阅读次数:
397
using System;using
System.Collections.Generic;using System.Linq;using System.Text;using
Microsoft.Office.Interop.Excel;namespace Reuters.ProcessQualit...
分类:
其他好文 时间:
2014-05-16 19:54:35
阅读次数:
286
MilkTea.Common转换器:namespace MilkTea.Common{
public class MultiBindingConverter:IMultiValueConverter { public object
Convert(objec...
分类:
其他好文 时间:
2014-05-16 08:43:47
阅读次数:
261
#include#include#includeusing namespace std;const
double PRECISION = 1E-6;const int COUNT = 4;const int RESULT = 24;double
number[COUNT]; //这里一定要用...
分类:
编程语言 时间:
2014-05-16 07:12:29
阅读次数:
350
#include "stdafx.h"#include #include #include using
namespace std;INT i;VOID CALLBACK Fun(PTP_CALLBACK_INSTANCE Instancd,PVOID
Context,PTP_WORK Work){...
分类:
编程语言 时间:
2014-05-16 06:42:47
阅读次数:
421
1 #include 2 #include 3 using namespace std; 4
5 int main() 6 { 7 int n; 8 string str; 9 int flag;10 while (cin>>n)11 {12
...
分类:
其他好文 时间:
2014-05-16 06:05:15
阅读次数:
377
注意是>=//#define
LOCAL#include#include#include#include#includeusing namespace std;int
T,maxx;std::map word_count;std::map::iterator be,ed,result;string ...
分类:
其他好文 时间:
2014-05-16 05:20:32
阅读次数:
294
using System;using System.Collections.Generic;using
System.Text;using System.Data;using System.Xml;using System.IO;using
System.Web;namespace Utility{...
分类:
Web程序 时间:
2014-05-14 09:54:50
阅读次数:
324
1 #include 2 using namespace std; 3 4 int
main() 5 { 6 int a[110] = {0};//已经排好的 7 int n,m; 8 while (cin>>n>>m
&& n||m) 9 {10 ...
分类:
其他好文 时间:
2014-05-14 09:43:38
阅读次数:
407