实验
-
实验8
任务3 from turtle import * def square(size=50, rgb=’pink’): ”’绘制正方形 参数size指定边长 参数rgb指定画笔颜色 …
-
实验6 指针
task1_1.c 1 #include<stdio.h> 2 #define N 4 3 4 int main() 5 { 6 int x[N]={1,9,8,4};…
-
实验八
from turtle import* def square(size=50,rgb=’orange’): pencolor(rgb) for i in range(4): fd(…
-
实验8
from turtle import *def square(size=50, c=’pink’): pencolor(c) for i in range(4): …
-
迅为STM32MP157开发板Linux+单片机学习资料教程汇总(手册+视频)
iTOP-STM32MP157开发板是基于意法半导体ST ARM双Cortex-A7核加单Cortex-M4核的一款多核异构处理器。Cortex-A7内核提供对…
-
实验8
from turtle import* def square(size=50,rgb=’orange’): pencolor(rgb) for i in range(4): fd(…
-
实验5
#include<stdio.h> #define N 5 #define M 80 typedef struct { char name[M]; char autho…
-
实验二
实验二 task1 #include<stdio.h> #include<stdlib.h> #include<time.h> #define …
-
实验二
任务一: /*随机产生5组学号*/ #include<stdio.h> #include<stdlib.h> #include<time.h> …
-
第二次实验
//该程序随机生成在校生中5位同学学号 #include <stdio.h> #include <stdlib.h> #include <time.h…