上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 31 下一页
摘要: 工具、代码和安装要求 要学完本教程,必须在开发系统上安装 Jython 2.1 或更高版本。开发系统可以是任何 ASCII 文本编辑器(如 Windows Notepad)和命令提示符的组合。本教程包括获得并安装 Jython 的详细说明。 要使用 Jython,还必须在系统上安装 Java 运行时 阅读全文
posted @ 2018-11-06 09:39 巨兽~墨菲特 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace ConsoleApp 阅读全文
posted @ 2018-11-05 09:20 巨兽~墨菲特 阅读(87) 评论(0) 推荐(0) 编辑
摘要: http://www.dotcpp.com/course/c/10403.html C语言提供一种特殊的运算符——逗号运算符。用它将两个表达式连接起来。如: 称为逗号表达式,又称为“顺序求值运算符”。逗号表达式的一般形式为 逗号表达式的求解过程是:先求解表达式1,再求解表达式2。整个逗号表达式的值是 阅读全文
posted @ 2018-11-04 16:35 巨兽~墨菲特 阅读(693) 评论(0) 推荐(0) 编辑
摘要: VC++6.0使用 第一步 输入一个测试代码,编译,执行。 阅读全文
posted @ 2018-11-04 16:07 巨兽~墨菲特 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 解决ubuntu系统 上没有tkinter模块的问题 已安装成功。 #!usr/bin/python3 import tkinter as tk import pickle import tkinter.messagebox window = tk.Tk() window.title('Welcom 阅读全文
posted @ 2018-11-03 12:17 巨兽~墨菲特 阅读(162) 评论(0) 推荐(0) 编辑
摘要: import tkinter import os from treeWindows import TreeWindows from infoWindows import InfoWindows import tkinter.filedialog as dir win=tkinter.Tk() win 阅读全文
posted @ 2018-11-02 22:24 巨兽~墨菲特 阅读(201) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/env python3 #-*- coding:utf-8 -*- ''' Administrator 2018/11/2 ''' from tkinter import * #创建根窗口 root = Tk() #设置窗口标题 root.title("Hello") #设置窗 阅读全文
posted @ 2018-11-02 11:42 巨兽~墨菲特 阅读(191) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/env python3 #-*- coding:utf-8 -*- ''' Administrator 2018/11/1 ''' import matplotlib.pyplot as plt plt.rcParams['font.sans-serif'] = ['SimHe 阅读全文
posted @ 2018-11-01 14:39 巨兽~墨菲特 阅读(77) 评论(0) 推荐(0) 编辑
摘要: 演示示例 #!/usr/bin/env python3 #-*- coding:utf-8 -*- ''' Administrator 2018/11/1 ''' from tkinter import * #创建主窗口 root=Tk() root.title("植物大战僵尸") #设置窗体大小和 阅读全文
posted @ 2018-11-01 09:34 巨兽~墨菲特 阅读(221) 评论(0) 推荐(0) 编辑
摘要: ''' 人 类名:Person 属性: 姓名 身份证号 电话号 卡 卡 类名:Card 属性:卡号 密码 余额 行为: 银行 类名:bank 属性:用户列表 提款机 提款机 类名:ATM 属性:用户字典 行为: 开户 查询 取款 存储 转账 改密 锁定 解锁 补卡 销户 管理员 类名:admin 属 阅读全文
posted @ 2018-11-01 00:13 巨兽~墨菲特 阅读(189) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 31 下一页