typing speed:27 typing Errors:45 Antique shops exert a peculiar fascination on a great many people. The more expensive kind of antique shop where rare ...
分类:
其他好文 时间:
2017-11-09 11:42:17
阅读次数:
177
题目 题目一:高速公路超速处罚 1.实验代码 2.设计思路 ①算法 Begin 输入speed,maxspeed //分别表示实际速度和车道限速 计算x的值 //x为实际速度超出车道限速的百分比的值 判断x值的大小,并输出不同结果 end ②流程图 3.本题未遇到问题 4.本题PTA提交列表 题目二 ...
分类:
编程语言 时间:
2017-11-08 20:10:30
阅读次数:
322
P3111 [USACO14DEC]牛慢跑Cow Jog_Sliver P3111 [USACO14DEC]牛慢跑Cow Jog_Sliver P3111 [USACO14DEC]牛慢跑Cow Jog_Sliver 题目描述 The cows are out exercising their hoo ...
分类:
其他好文 时间:
2017-11-06 11:21:13
阅读次数:
198
摘自官方介绍,没有翻译(没必要,已经比较简单了,重要的就是进行每条的诠释了,后续。。。) Entire Project on a CDN Because JAMstack projects don’t rely on server-side code, they can be distributed ...
分类:
其他好文 时间:
2017-11-04 00:13:32
阅读次数:
256
By 2020, the behavior of every single citizen and legal person (which includes every company or other entity) in China will be rated and ranked, parti ...
分类:
Web程序 时间:
2017-11-01 12:03:20
阅读次数:
235
先放两张图 首先看到这个问题比较懵,只能想到用turtle库一步一步的画,后来老师说可以用其他方式,比如循环,就从网上搜了一些类似的东西,并且请教了一些同学。 开始了磕磕绊绊的敲代码。 因为两个人聚不到一块,上机课也是写老师留的作业,于是写了两个版本。通过网上交流。 一朵玫瑰的是我画的,主要是轮廓不 ...
分类:
其他好文 时间:
2017-10-31 22:46:45
阅读次数:
176
import turtle as t t.begin_fill() t.fillcolor("red") t.setup(800,600,0,0) t.speed(5) t.penup() t.goto(-70,180) t.pendown() t.circle(20,45) t.circle(20... ...
分类:
其他好文 时间:
2017-10-31 14:16:07
阅读次数:
170
1 import turtle 2 turtle.speed(10) 3 turtle.fillcolor("red") 4 turtle.begin_fill() 5 turtle.circle(70,30) 6 turtle.circle(5,100) 7 turtle.circle(30,13... ...
分类:
其他好文 时间:
2017-10-30 19:38:34
阅读次数:
181
import turtle as t #新建画布 t.setup(1000,600,0,0) #花外轮廓 t.speed(10) t.begin_fill() t.fillcolor("red") t.penup() t.goto(-90,180) t.pendown() t.circle(-90,... ...
分类:
其他好文 时间:
2017-10-30 19:36:53
阅读次数:
174
现阶段: 为了控制速度 将 4000这个地方改为1100 t_speed改为10 ...
分类:
其他好文 时间:
2017-10-30 11:20:08
阅读次数:
158