测试用-第二篇文章
LED灯1234567891011121314151617181920// main.c#include "stm32f10x.h"#include "led.h"#include "delay.h"int main(){ LED_Init(); delay_init(); LED1 = LED2 = LED3 = LED4 = 1; while(1){ LED1 = LED2 = 0; LED3 = LED4 = 1; int t = 30000; while(t--) delay_ms(1000); LED1 = LED2 = 1; LED3 = LED4 = 0; t = 30000; while(t--) delay_ms(1000); }} 1234567891011121314// led.h#ifndef __LED_H#define __LED_H#include "sys.h"#define LED1...
测试用-第三篇文章
涅普高校-密码学2月5日:RSA加密与攻击课件和脚本:https://am473ur.lanzous.com/iXRGwldkj7a 整数分解:https://www.alpertron.com.ar/ECM.HTM 整数因数查询:http://www.factordb.com/index.php easyRSA下载地址 1:https://am473ur.lanzous.com/i95Qslccy6f 下载地址 2:https://nep.am473ur.com/easyRSA_task.zip pycryptodomehttps://pypi.org/project/pycryptodome/ 安装1pip install pycryptodome` 或 `python3 –m pip install pycryptodome 测试import Crypto...
测试用-第四篇文章
这是我的第四篇文章面向对象实现通讯录系统Contact类123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869import java.io.Serializable;class Contaxt implements Serializable { int id; String name; String tel; String address; boolean flag; public Contaxt(int id, String name, String tel, String address) { this.id = id; this.name = name; this.tel = tel; this.address = address; flag =...