摘要:
f1 = open(r'E:\Python\Data\data1.txt') #读取data1.txt文件,使用系统默认缓冲区大小, 为了读取快点,使用缓存吧! f = open(r'E:\Python\Data\data2.txt', 'w') f.write('Hello World !') f 阅读全文
摘要:
package cn.Douzi.ProductConsume; import java.util.LinkedList; import java.util.Queue; import java.util.Scanner; public class ProCon { static int LEN = 3; static public int PROTIME = 1500; ... 阅读全文
摘要:
package cn.Douzi.ReadWriter; import java.util.Scanner; public class ReadWrite { static public int count = 0; //读者数量 static public int wcnt = 0; //写者数量 s... 阅读全文
摘要:
Sunscreen Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 6410 Accepted: 2239 Description To avoid unsightly burns while tanning, each of t 阅读全文
摘要:
package cn.Douzi.Lab7_4; public class Triangle { int a, b, c; public Triangle(int a, int b, int c) { super(); this.a = a; this.b = b; this.c = c; }... 阅读全文