##此时需要导入os模块 import os with open('old.txt','r',encoding = 'utf-8') as read_f,\ open('new.txt','w',encoding = 'utf-8') as write_f: for line in read_f: ... ...
分类:
编程语言 时间:
2017-07-13 21:42:52
阅读次数:
186
奇怪的电梯 题目描述 有一天桐桐做了一个梦,梦见了一种很奇怪的电梯。大楼的每一层楼都可以停电梯,而且第i层楼(1≤i≤N)上有一个数字K;(0≤Ki≤N)。电梯只有四 个按钮:开,关,上,下。上下的层数等于当前楼层上的那个数字。当然,如果不能满足要求,相应的按钮就会失灵。例如:3 3 1 2 5代表 ...
分类:
其他好文 时间:
2017-07-13 21:41:35
阅读次数:
137
<1> using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Test { class A { public void SayHello() { Console. ...
分类:
其他好文 时间:
2017-07-13 20:42:54
阅读次数:
192
1.返回上一页 window.history.go(-1); //返回上一页 window.history.back(); //返回上一页 window.location.go(-1); //刷新上一页 window.location.go(-1); //刷新上一页 ...
分类:
其他好文 时间:
2017-07-13 20:42:22
阅读次数:
150
<?php/** * Created by PhpStorm. * User: fu * Date: 2017/7/13 * Time: 13:34 */ class Person{ public $name; public $age; public function __construct($na ...
分类:
Web程序 时间:
2017-07-13 20:41:10
阅读次数:
233
定义一个Person的类,存入ArrayList集合中,去除重复元素,定义:名字相同的和年龄都相同的为重复元素。 取重 public class Qu { public static void main(String[] args) { Sa2 a = new Sa2("张三",20); Sa2 a ...
分类:
编程语言 时间:
2017-07-13 20:40:48
阅读次数:
299
public class FileZip { /** * * @param srcfile 文件名称数组 * @param zipfile 压缩后文件 */ public static void ZipFiles(File[] srcfile, File zipfile) { byte[] buf ...
分类:
其他好文 时间:
2017-07-13 20:32:15
阅读次数:
174
下载mysql wget http://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-5.7.13-linux-glibc2.5-x86_64.tar.gz 移动到指定位置 cp mysql-5.7.13-linux-glibc2.5-x86_64.tar. ...
分类:
数据库 时间:
2017-07-13 20:31:12
阅读次数:
186
Font Size:Aa Aa Aa Description Asakura存在于一个魔法世界中。有一天,Asakura在一条魔法通道里偷懒,突然接到一个紧急任务,要高速赶往还有一条通道b去。 我们把通道a和b看作两条线段AB和CD。Asakura初始位置在A,如今要高速赶往D。Asakura在魔法 ...
分类:
其他好文 时间:
2017-07-13 20:30:54
阅读次数:
176
将保存的某些文件选取其中想类似的部门使用String类中的方法将其截取并写入到指定文件中 public class Te3 { void read(String src,String start,String end) throws Exception{ FileInputStream a = ne ...
分类:
编程语言 时间:
2017-07-13 20:30:45
阅读次数:
159