码迷,mamicode.com
首页 >  
搜索关键字:黑宝石(black diamond)免费主题    ( 3118个结果
四分树- UVa 297
1 #include <iostream> 2 #define black 'f' 3 #define white 'e' 4 #define grey 'p' 5 using namespace std; 6 struct node{ 7 char type; 8 node* upper_r; 9 ...
分类:其他好文   时间:2020-03-21 16:25:21    阅读次数:64
linux(CentOS7)上安装MySql5.7
① 第一种方式:在线安装(不推荐,下载安装包太耗时间了) https://www.cnblogs.com/black-fact/p/10840332.html ② 第二种方式:使用rpm安装包进行安装 file:///F:/迅雷下载 安装步骤如下 安装client:rpm -ivh mysql-co ...
分类:数据库   时间:2020-03-19 09:33:35    阅读次数:82
Java面向对象-类与方法
类 一个类即一个对象 声明 作用域 class 类名{ //属性 //方法 } 作用域可不写,详见作用域 方法 方法即函数 声明 作用域 返回类型 方法名(参数1, 参数2, …){ //方法体内容 } e.g. public tell (String name){ System.out.print ...
分类:编程语言   时间:2020-03-18 22:04:39    阅读次数:62
换根dp
"https://codeforces.com/contest/1324/problem/F" description you are given a tree, in which the vertices are all printed either black or white. , find ...
分类:其他好文   时间:2020-03-18 00:04:49    阅读次数:76
红色五角星绘制
import turtle as t t.color("black","red") t.begin_fill() for i in range(5): t.fd(100) t.rt(144) t.end_fill() t.done ...
分类:其他好文   时间:2020-03-15 11:53:18    阅读次数:62
1.五角星绘制
import turtle turtle.pensize(1) turtle.pencolor("black") #画笔黑色 turtle.fillcolor("red") #内部填充红色 #绘制五角星# turtle.begin_fill() for _ in range(5): #重复执行5次 ...
分类:其他好文   时间:2020-03-15 11:19:38    阅读次数:47
第二周练习
1.五角星 import turtle turtle.pensize(5) turtle.pencolor("yellow") turtle.left(72) turtle.fillcolor("red") turtle.begin_fill() for _ in range(5): turtle. ...
分类:其他好文   时间:2020-03-14 22:18:33    阅读次数:77
python.五角星
import turtle turtle.pensize(4)turtle.pencolor("black") turtle.fillcolor("red")turtle.begin_fill() for _ in range(5): turtle.forward(150) turtle.right ...
分类:编程语言   时间:2020-03-14 22:06:21    阅读次数:70
五角星绘制
1 from turtle import* 2 fd(-150) 3 color("black","red") 4 begin_fill() 5 for i in range(5): 6 fd(300) 7 right(144) 8 end_fill() 9 hideturtle() ...
分类:其他好文   时间:2020-03-14 20:15:10    阅读次数:57
8.五角星绘制
1 import turtle 2 import time 3 4 turtle.pensize(1) 5 turtle.pencolor("black") #画笔黑色 6 turtle.fillcolor("red") #内部填充红色 7 #绘制五角星# 8 turtle.begin_fill() ...
分类:其他好文   时间:2020-03-14 15:01:28    阅读次数:60
3118条   上一页 1 ... 17 18 19 20 21 ... 312 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!