GCD and LCMTime Limit: 20 SecMemory Limit: 256 MB题目连接http://acm.hdu.edu.cn/showproblem.php?pid=4497DescriptionGiven two positive integers G and L, cou...
分类:
其他 时间:
2015-06-02 21:38:46
收藏:
0 评论:
0 赞:
0 阅读:
201
最近打算详细的学习一下latex,所以在学习的过程中遇到了一些问题。随时出问题,随时记录更新。我是萌萌的Latex,x_0.再写具体的技巧之前,先说一个关于打公式的小技巧。有时候你不知道怎么设置具体的格式了,那直接打开Mathtype打个公式,然后以Latex形式复制出来,认真学习一下就好了。O(∩...
分类:
其他 时间:
2015-06-02 21:38:37
收藏:
0 评论:
0 赞:
0 阅读:
295
本文的使用环境是ASP.NET MVC4;一、cheditor的使用方法: 第1步,在Scripts文件夹下新建一文件夹,在文件夹中添加cheditor使用包的如下文件: 第2步,在模板中添加引用:第3步,对要用富文本的textarea元素进行以下编辑: @Html.TextAreaFor...
分类:
其他 时间:
2015-06-02 21:38:17
收藏:
0 评论:
0 赞:
0 阅读:
153
已截图方式记录模块信息:HTTP模块: 对于网络返回处理状态封装了很多种,我已截图展现以上状态也是在http协议中包含的状态。http函数: path模块:
分类:
其他 时间:
2015-06-02 21:37:57
收藏:
0 评论:
0 赞:
0 阅读:
215
#includeusing namespace std;int gcd(int a,int b){ if(a%b!=0) return gcd(b,a%b); else return b ;}int main() { int a,b; w...
分类:
其他 时间:
2015-06-02 21:37:36
收藏:
0 评论:
0 赞:
0 阅读:
127
今天,我们来考察下我们这几天的学习情况。1、我们在tty1里面看到的欢迎画面,就是在那个login:之前的画面(CentOS release 6.5 (Final)…)是怎么来的?答:首先,我们要知道欢迎信息的内容是记录在/etc/issue中的,然后想到既然issue是一个档案,我们可以先用vi ...
分类:
其他 时间:
2015-06-02 21:36:46
收藏:
0 评论:
0 赞:
0 阅读:
214
数论 题解:http://www.cnblogs.com/zhuohan123/p/3726933.html copy一下推导过程:令$$S_i=\sum_{k=1}^{n}k^im^k$$我们有$$ \begin{aligned} (m-1)S_i &= mS_i-S_i \\&=\sum_{.....
分类:
其他 时间:
2015-06-02 21:36:37
收藏:
0 评论:
0 赞:
0 阅读:
152
1 public class Node{ 2 public long data; 3 public Node next; 4 5 public Node(long value){ 6 this.data = value; 7 } 8 ...
分类:
其他 时间:
2015-06-02 21:36:26
收藏:
0 评论:
0 赞:
0 阅读:
83
1 #include 2 using namespace std; 3 int main() 4 { 5 int sushu(int x); 6 int a; 7 cin>>a; 8 if(sushu(a)==1) 9 cout<<"prime"<...
分类:
其他 时间:
2015-06-02 21:36:06
收藏:
0 评论:
0 赞:
0 阅读:
143
1 #include 2 using namespace std; 3 int main() 4 { 5 int n ; 6 while(cin>>n) { 7 cout << n*(n+1)/2 << endl << endl ; 8 } 9 ...
分类:
其他 时间:
2015-06-02 21:35:36
收藏:
0 评论:
0 赞:
0 阅读:
559
List lc;// = new List(); private void BindGrid() { //if (lc.Count > 0) // lc.Clear(); lc = new List...
分类:
其他 时间:
2015-06-02 21:35:06
收藏:
0 评论:
0 赞:
0 阅读:
216
“今日适越而昔来”是惠施提出的一种时空观,《齐物论》:“未成乎心而有是非,是今日适越而昔至也”。字面意思:假定某人自某地“适越”,临行时人问则可说“今日适越”。到越后,次日人问何时而来,则可回答“昔来”。内涵:昨天、今天、明天,具有相对性;时间的标准是不一致的。《养生主》 “吾生也有涯,而知也无涯。...
分类:
其他 时间:
2015-06-02 21:34:46
收藏:
0 评论:
0 赞:
0 阅读:
279
《把你的英语用起来》的2.5 英文语法的学习。
分类:
其他 时间:
2015-06-02 21:34:26
收藏:
0 评论:
0 赞:
0 阅读:
258
转载请注明出处:http://www.cnblogs.com/havedream/p/4453297.html方法:DataTable.Select作用:获取DataRow对象的数组。重载:Select()-----------------------------------------------...
分类:
其他 时间:
2015-06-02 21:34:17
收藏:
0 评论:
0 赞:
0 阅读:
208
通过SVN导入项目SVN checkout时候会出现如下错误:Cannot run program "svn" (in directory "E:\Projects"): CreateProcess error=2, 系统找不到指定的文件。配置IDEA这样就OK了。
分类:
其他 时间:
2015-06-02 21:33:56
收藏:
0 评论:
0 赞:
0 阅读:
738
1 #include 2 #include 3 using namespace std; 4 int main() 5 { 6 int i,n,a,b,c,sum; 7 a=3,b=4,c=5; 8 cin>>n; 9 if(n==1) sum=3;10 ...
分类:
其他 时间:
2015-06-02 21:33:26
收藏:
0 评论:
0 赞:
0 阅读:
218
1 #include 2 using namespace std; 3 int main() 4 { 5 int year; 6 while(cin>>year) 7 { 8 if((year%4==0&&year%100!=0)|...
分类:
其他 时间:
2015-06-02 21:32:56
收藏:
0 评论:
0 赞:
0 阅读:
181
A. PuzzlesTime Limit: 20 SecMemory Limit: 256 MB题目连接http://codeforces.com/problemset/problem/337/ADescriptionThe end of the school year is near and Ms...
分类:
其他 时间:
2015-06-02 21:32:36
收藏:
0 评论:
0 赞:
0 阅读:
123
首先对软件工程课做一个比较客观的评价: 总体来说,我们的软件工程课是一门非常优秀的课。这一学期的课让我们其中大多数人都收获了不少东西,尤其是对自我的认知,让我们明白我们其实能行。平时的上课并没有照本宣科地对教材进行分析讲解,而是针对编程、结对开发、团队开发等一系列软件开发实际问题的分析和探讨,...
分类:
其他 时间:
2015-06-02 21:32:27
收藏:
0 评论:
0 赞:
0 阅读:
255
转载自---http://blog.csdn.net/hguisu/article/details/7418161111:文件输入流:FileInputStream可以使用read()方法一次读入一个字节,并以int类型返回,或者是使用read()方法时读入至一个byte数组,byte数组的元素有多...
分类:
其他 时间:
2015-06-02 21:32:06
收藏:
0 评论:
0 赞:
0 阅读:
258