数列特征
【AC代码】:
#include
#include
using namespace std;
#define MAX 10000+10
int main()
{
int n = 0, i = 0;
int num[MAX];
cin >> n;
for (i = 0; i > num[i];
int mmin = num[0], mm...
分类:
其他好文 时间:
2015-03-10 23:15:45
阅读次数:
179
特殊的数字
【AC代码】:
#include
#include
#include
using namespace std;
int main()
{
//freopen("in.txt", "r", stdin);
//freopen("out.txt", "w", stdout);
int i = 0;
for (i = 100; i <= 999; i++)
{
in...
分类:
其他好文 时间:
2015-03-10 23:14:12
阅读次数:
263
Linux新手请看鸟哥的私房菜http://vbird.dic.ksu.edu.tw/linux_basic/linux_basic.php搭建hustojhttps://github.com/zhblue/hustojcodeblockctrl shift c 多行注释ctrl shift x 取...
分类:
系统相关 时间:
2015-03-10 01:25:37
阅读次数:
510
【思路】:排序。可以用 sort 或者 qsort ,或者常见的冒泡。
【AC代码】:
常规:
#include
#include
using namespace std;
#define MAX 200+10
int main()
{
int i = 0, n = 0;
int num[MAX];
cin >> n;
for (i = 0; i < n; i++)
cin...
分类:
编程语言 时间:
2015-03-10 00:13:44
阅读次数:
174
闰年判断
【AC代码】:
#include
#include
using namespace std;
int main()
{
int y = 0;
cin >> y;
if (((0==y%4)&&(0!=y%100))||(0==y%400))
cout << "yes";
else
cout << "no";
}
01子串
【AC代码】:方法很多,最简单的。...
分类:
其他好文 时间:
2015-03-10 00:13:09
阅读次数:
246
1.6.1 什么是 Indexing 1.6.2 Uploading Data with Index Handlers 1.6.3 Uploading Data with Solr Cell using Apache Tika 1.6.4 Uploading Structured Data...
分类:
其他好文 时间:
2015-03-09 14:22:26
阅读次数:
119
LINQ,语言集成查询(LanguageIntegrated Query)是一组用于c#和Visual Basic语言的扩展。它允许编写C#或者Visual Basic代码以查询数据库相同的方式操作内存数据。
从技术角度而言,LINQ定义了大约40个查询操作符,如select、from、in、where以及order by(C#中)。使用这些操作符可以编写查询语句。不过,这些查询还可以基于...
分类:
其他好文 时间:
2015-03-09 00:34:12
阅读次数:
185
/** * 获取编辑器工具栏自定义参数 * @param type 类型 simple=极简版 basic=基本版 full=完整版 */function get_ckeditor_toolbar(type) { if(!arguments[0]) type = 'simple'; /...
分类:
其他好文 时间:
2015-03-08 01:21:37
阅读次数:
163
1、项目中需要检测到几台远程服务器的参数,差了很多资料,决定用的这个2、jar包:ganymed-ssh2-build210.jar3、原理:向远程linux服务器发送脚本命令,得到该台服务器的信息4、代码如下:public class Basic { public static void m...
分类:
其他好文 时间:
2015-03-06 19:01:06
阅读次数:
166
读入一个自然数n,计算其各位数字之和,用汉语拼音写出和的每一位数字。 输入格式:每个测试输入包含1个测试用例,即给出自然数n的值。这里保证n小于10100。 输出格式:在一行内输出n的各位数字之和的每一位,拼音数字间有1 空格,但一行中最后一个拼音数字后没有空格。 输入样例: 12345678909...
分类:
其他好文 时间:
2015-03-06 18:59:31
阅读次数:
140