dev c++ 的boost库的安装步骤 然后点击“check for updates”按钮 最后点击“Download selected”按钮,下载完成后安装.... 给dev添加boost库文件,找到之前安装的目录#include #include#include#include#in...
分类:
编程语言 时间:
2015-07-12 21:35:23
阅读次数:
210
/*
Write a program to print the value of EOF.
*/
#include
main()
{
printf("EOF is %d\n", EOF);
}
/*
Output:
EOF is -1
*/...
分类:
其他好文 时间:
2015-07-12 20:24:24
阅读次数:
103
/*
Write a program to count blanks, tabs, and newlines.
*/
#include
/* count blanks, tabs, and newlines */
main()
{
int c, nb, nt, nl;
nb = 0; /* number of blanks */
nt = 0; /* number of t...
分类:
其他好文 时间:
2015-07-12 20:23:41
阅读次数:
103
/*
Write a program to copy its input to its output, replacing each string of one or
more blanks by a single blank.
*/
#include
#define NONBLANK 'a'
/* replace string of blanks with a single blank...
分类:
其他好文 时间:
2015-07-12 20:22:41
阅读次数:
127
1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 using namespace std; 9 #define M 10000 10 int t,n,m,k,num...
分类:
其他好文 时间:
2015-07-12 20:12:32
阅读次数:
111
/*
Verify that the expression getchar() != EOF is 0 or 1.
*/
#include
main()
{
int c;
while(c = getchar() != EOF)
{
printf("%d\n", c);
}
printf("%d - at EOF\n", c);
}...
分类:
其他好文 时间:
2015-07-12 19:02:18
阅读次数:
145
一.Struts2的数据标签主要用于提供各种数据访问相关的功能,包括显示一个Action里的属性,以及生成国际化输出等功能。数据标签主要包括:property、set、push、param、bean、action、include、url、i18n和text、date及debug标签等。
1.property标签:用于输出value属性指定的值。可以与标签结合使用,一个是给bean...
分类:
其他好文 时间:
2015-07-12 19:01:32
阅读次数:
153
//带头结点的单链表
#include
#include
using namespace std;
typedef int ElemType;
typedef struct Node
{
ElemType data;
struct Node *next;
}LNode,*LinkList;
void InitList(LinkList *L);
void Create_head(L...
分类:
其他好文 时间:
2015-07-12 18:56:49
阅读次数:
107
Description维护一个W*W的矩阵,初始值均为S.每次操作可以增加某格子的权值,或询问某子矩阵的总权值.修改操作数M 2 #include 3 #include 4 5 struct A 6 { 7 int x, y, pos, ctrl, ans; 8 } t[200010]...
分类:
其他好文 时间:
2015-07-12 18:55:24
阅读次数:
95
先来看下面一段代码 1 #include 2 3 using namespace std; 4 5 class Circle 6 { 7 public: 8 double pi = 3.1415926; 9 double r;10 double area = pi*r*r...
分类:
编程语言 时间:
2015-07-12 18:45:32
阅读次数:
233