摘要: 1 import javax.swing.*; 2 import java.awt.event.*; 3 public class Employee { 4 5 public static void main(String[] args) { 6 JFrame window=new JFrame(" 阅读全文
posted @ 2019-05-12 16:44 不忘初心_LZY 阅读(418) 评论(0) 推荐(0) 编辑
摘要: 1.(1)Linux创建文件地址使用"/"; (2)bin目录用来存放常用可执行文件; (3)sbin目录用来存放系统的可执行文件; (4)家目录用来存放用户自己的文件或目录(普通用户);如果是root用户,则存放于/home目录下。 (5)dev是设备文件目录; (6)etc是配置文件目录; (7 阅读全文
posted @ 2019-05-12 15:35 不忘初心_LZY 阅读(120) 评论(0) 推荐(0) 编辑
摘要: import time i = 0 num = 0 while i<= 100: num+=i i+=1 print('%d' %num) 阅读全文
posted @ 2019-03-26 22:15 不忘初心_LZY 阅读(486) 评论(0) 推荐(0) 编辑
摘要: import timecount = 0while count<10: count = count + 1 if count==7: continue print(count) 阅读全文
posted @ 2019-03-26 21:53 不忘初心_LZY 阅读(148) 评论(0) 推荐(0) 编辑