题目链接:Codeforces Round #403 D. Innokenty and a Football League 题意: 某人需要给若干球队选择队名缩写。已知每个球队的名字必然是 <team name> <hometown name> 的形式。取队名缩写的规则是固定的,只有两种: 每个队的 ...
分类:
其他好文 时间:
2017-03-06 17:33:52
阅读次数:
170
//自己根据图片路径设置好,img/main/index.jpg 为主页显示的9张 //img/show/index/index.jpg 分别为每一张主页后面现实的图片 <!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></titl ...
分类:
其他好文 时间:
2017-03-06 17:21:21
阅读次数:
250
修改etc/apt/sources.list文件 deb http://old-releases.ubuntu.com/ubuntu/ natty main restricted universe multiverse deb http://old-releases.ubuntu.com/ubunt ...
分类:
系统相关 时间:
2017-03-06 15:05:33
阅读次数:
243
cc -mno-cygwin foo.c 1、$ ps PS的相关用法: QuoteUsage ps [-aefl] [-u uid]-f = show process uids, ppids-l = show process uids, ppids, pgids, winpids-u uid = ...
1、新建记事本,修改文件名称和后缀名为:demo.java,在记事本中输入: public class demo{ public static void main(String args[]){ System.out.println("Hello World"); }} 保存文本 2、在控制台运行J ...
分类:
其他好文 时间:
2017-03-06 14:40:50
阅读次数:
150
2.1 建议使用double型 #include<stdio.h> int main(){ double x,y,z,s,p,a; scanf("%lf%lf%lf",&x,&y,&z); s=x+y+z; p=x*y*z; a=s/3.0; printf("%lf\n%lf\n%lf\n",s,p ...
分类:
其他好文 时间:
2017-03-06 14:37:40
阅读次数:
199
#include int main() { int n; while(scanf("%d",&n)!=EOF) { while(n--) { int a,b,c,d; scanf("%d.%d.%d.%d",&a,&b,&c,&d); if ((a>-1 && a-1... ...
分类:
其他好文 时间:
2017-03-06 14:14:06
阅读次数:
147
1 static void Main(string[] args) 2 { 3 System.Threading.Thread t1 = new System.Threading.Thread 4 (delegate() 5 { 6 System.Console.Write("H... ...
分类:
编程语言 时间:
2017-03-06 13:53:09
阅读次数:
160
TFS Release中自定义步骤时,可以选择“命令行”,官方的文档中,并没有描述调用相关的程序后,如何返回失败信息。通过下面步骤,可以实现本标题描述的功能。 步骤一:编写Console Application. 说明:1.Main函数的返回值要设为int类型。-1代表程序执行失败。 2.Conso ...
分类:
Web程序 时间:
2017-03-06 13:47:12
阅读次数:
188