码迷,mamicode.com
首页 >  
搜索关键字:node.js(六)——http概念进阶    ( 29315个结果
实验六 Python库应用编程与体验
import turtle turtle.setup(800,600) turtle.pencolor('pink') for i in range(4): for i in range(2): turtle.circle(80,90) turtle.left(90) turtle.right(90 ...
分类:编程语言   时间:2021-06-13 09:20:06    阅读次数:0
实验六
from turtle import * def square(size = 50, rgb = 'orange'): pencolor(rgb) for i in range(4): fd(size) left(90) def main(): setup(800, 600) speed(0) fo ...
分类:其他好文   时间:2021-06-13 09:19:11    阅读次数:0
实验六
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 10 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; /*学生学号 */ char name[20 ...
分类:其他好文   时间:2021-06-11 18:28:53    阅读次数:0
实验六 结构体
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; /*学生学号 */ char name[20] ...
分类:其他好文   时间:2021-06-11 18:23:03    阅读次数:0
实验六
实验任务一 // P280例8.15 // 对教材上的程序作了微调整,把输出学生信息单独编写成一个函数模块 // 打印不及格学生信息和所有学生信息程分别调用 #include<stdio.h> #include<stdlib.h> #include<string.h> #define N 10 // ...
分类:其他好文   时间:2021-06-11 18:17:22    阅读次数:0
实验六
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 4 typedef struct student { int id; /*学生学号 */ char name[20]; /*学生姓名 */ char subject[2 ...
分类:其他好文   时间:2021-06-11 18:15:08    阅读次数:0
实验六 进程基础
1、请举例说明静态链接库的创建与使用 ar:建立,修改档案或从档案中抽取成员 ar -r :替换归档文件中已有的文件或加入新文件 ar -t :显示归档文件内容 2、请举例说明共享库的创建与使用。 3、编程实现一个简单文件复制命令。 4、使用fork创建一个子进程,进程创建成功后父子进程分别输出不同 ...
分类:系统相关   时间:2021-06-11 18:13:23    阅读次数:0
实验六
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 typedef struct student{ int id; char name[20]; char subject[20]; float perf; float ...
分类:其他好文   时间:2021-06-11 18:08:13    阅读次数:0
实验六
1 // P280例8.15 // 对教材上的程序作了微调整,把输出学生信息单独编写成一个函数模块 // 打印不及格学生信息和所有学生信息程分别调用 #include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 // 运行程序 ...
分类:其他好文   时间:2021-06-11 18:07:37    阅读次数:0
实验六
// 对教材上的程序作了微调整,把输出学生信息单独编写成一个函数模块 // 打印不及格学生信息和所有学生信息程分别调用 #include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 // 运行程序输入测试时,可以把N改小一些输 ...
分类:其他好文   时间:2021-06-11 18:05:01    阅读次数:0
29315条   上一页 1 ... 4 5 6 7 8 ... 2932 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!