摘要:
import turtle #引入代码块love = turtlelove.setup(1000,600,100,100)love.penup()love.fd(-400)love.seth(90)love.fd(100)love.pendown()love.pensize(10)love.penc 阅读全文
摘要:
assume cs:code,ss:stack,ds:data data segment ;原始数据存放的地方 db '1975','1976','1977','1978','1979','1980','1981','1982' db '1983','1984','1985','1986','198 阅读全文
摘要:
#include <stdio.h> #include <stdlib.h> #include <time.h> #include <windows.h> #include <conio.h> #define H 10 #define L 20 void map(); void map_print( 阅读全文
摘要:
#include <stdio.h>int power(int,int);int scale_first(int,int);int scale_double(int,int);int scale_all(int,int,int);int main(){ //给定一个 M 进制的数 x,实现对 x 向 阅读全文
摘要:
#include <stdio.h> //一般都有的头文件 struct candidate //建立一个结构体,后面是名称 { char name[20]; //定义变量name,设置长度20 int count; //定义变量count } list[]={{"invalid",0},{"Zha 阅读全文