码迷,mamicode.com
首页 >  
搜索关键字:tell    ( 578个结果
Shortest Distance
题目描述 The task is really simple: given N exits on a highway which forms a simple cycle, you are supposed to tell the shortest distance between any pair ...
分类:其他好文   时间:2020-07-26 15:22:02    阅读次数:59
[Jarvisos]Tell me something
0x01 拿到题目首先检查一下是32位还是64位 64位程序,未开启canary栈保护 运行一下程序,检查一下程序的运行逻辑 提示—>输入—>输出 0x02 ida反编译一下,看一下代码逻辑是什么 发现read函数在向v6读入输入的时候没有判断v6接受参数的大小范围,而超出了v6所能接受的最大范围, ...
分类:编程语言   时间:2020-07-25 09:35:10    阅读次数:81
Latest Version Porsche Piwis Tester II V14.75 with CF30 Laptop
Good news to tell you that our our new arrived Porsche Piwis tester II have the latest version V14.75 . It is the latest professional tester for Porsh ...
分类:其他好文   时间:2020-07-22 21:01:24    阅读次数:82
《随便写》一些小知识
<1>获取当前读写的位置 在读写文件的过程中,如果想知道当前的位置,可以使用tell()来获取 # 打开一个已经存在的文件 f = open("test.txt", "r") str = f.read(3) print "读取的数据是 : ", str # 查找当前位置 position = f.t ...
分类:其他好文   时间:2020-07-21 21:54:10    阅读次数:64
Python第七章
第 7 章 用户输入和while循环 7.1 函数input()的工作原理 message = input("Tell me something, and I will repeat it back to you: ") print(message) 7.1.1 编写清晰的程序 name = inp ...
分类:编程语言   时间:2020-07-11 21:11:02    阅读次数:205
python 动态添加方法
#:动态添加方法'''需要导入模块from type import MethodType可以把一个指定的方法绑定到一个类上使用方法:p.speak = MethodType(tell,p)p:实例名字speak:新的方法名字MethodType:关键字,动态添加tell:需要添加的方法上述是将 te ...
分类:编程语言   时间:2020-07-06 01:05:23    阅读次数:91
property的作用
'''property:将一个方法当作属性使用'''class persion: def __init__(self,name,age): self.name = name self.__age = age #:age是一个私有属性 def tell(self): print("我叫%s,我今年%s ...
分类:其他好文   时间:2020-06-27 20:27:13    阅读次数:81
次小生成树
The Unique MST Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 30194 Accepted: 10809 Description Given a connected undirected graph, tell i ...
分类:其他好文   时间:2020-06-24 21:33:23    阅读次数:67
PAT.1065 A+B and C(64bit) (正负数溢出处理)
1065 A+B and C (64bit) (20分) Given three integers A, B and C in [?], you are supposed to tell whether A+B>C. Input Specification: The first line of th ...
分类:其他好文   时间:2020-06-03 13:53:54    阅读次数:74
一起学Java(三十二)----- 成员属性封装
不积跬步,无以至千里;不积小流,无以成江海。 Java语言基础 Java的成员属性封装 若不进行封装: class Person { String name; int age; public void tell() { System.out.println("姓名:" + name + ", 年龄: ...
分类:编程语言   时间:2020-05-16 17:04:05    阅读次数:64
578条   上一页 1 2 3 4 ... 58 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!