LiXiang666
LiXiang666
全部文章
分类
acm集锦(1)
c/c++(36)
Java(2)
mos(1)
PTA(1)
python(26)
Virtual Judge(6)
数据结构(13)
未归档(11)
蓝桥杯(29)
归档
标签
去牛客网
登录
/
注册
沐丶偶
For day In experience。
全部文章
(共126篇)
A - Biorhythms
A - Biorhythms ome people believe that there are three cycles in a person’s life that start the day he or she is born. These three cycles are the phys...
2019-08-13
0
409
使用idea编写第一个Java程序
2019-08-10
0
307
使用eclipse编写JAVA程序
使用eclipse编写JAVA程序 一、Eclipse(集成开发环境IDE) **1、创建java项目 ** 2、创建程序包 3、编写JAVA源程序 4、运行程序 注:IDE自动完成了将.java源文件转变为.class的过程 点击中间绿色按钮(Run )
2019-08-10
0
363
python基础练习(十)
data = eval(input("请输入一组数据,以逗号分隔:")) print(max(data)) import jieba s = "一件事情没有做过,就没有资格对此事发表看法" ls = jieba.lcut(s) print(ls) ...
2019-08-10
0
380
python基础练习(九)
while True: s = input("请输入信息:") if s=="Y" or s=="y": break import calendar year = eval(input("请...
2019-08-10
0
464
python基础练习(八)
animals = ['cow', 'duck', 'cat', 'dog'] animals.reverse() print(animals) word = " 窗前明月光,疑是地上霜。 " print(word.strip()) count=0 whi...
2019-08-10
0
631
python基础练习(七)
lis = [2,8,3,6,5,3,8] new_lis = list(set(lis)) print(new_lis) fruit = input('输入水果:') lis = ['苹果','哈密瓜','橘子','猕猴桃','杨梅','西瓜'] if fruit in lis: ...
2019-08-10
0
510
python基础练习(六)
line = "After fresh rain in mountains bare " print(line.title()) a = float(input("输入三角形第一条直角边长:")) b = float(input("输入三...
2019-08-09
0
483
python基础练习(五)
s = eval(input("请输入一个数字:")) ls = [0] for i in range(65,91): ls.append(chr(i)) print("输出大写字母:{}".format(ls[s])) s = input(&...
2019-08-09
0
495
python基础练习(四)
ntxt = input("请输入4个数字(空格分隔):") nls=ntxt.split(" ") x0 = eval(nls[0]) y0 = eval(nls[1]) x1 = eval(nls[2]) y1 = eval(nls[3]) r = pow...
2019-08-08
0
597
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页