1 2 Fork me on GitHub 6
摘要: 1. 修改host文件 host文件所在路径: C:\Windows\System32\drivers\etc 打开host文件后,在后面加入以下地址: # Github Start 52.69.186.44 github.com 192.30.253.112 github.com 192.30.2 阅读全文
posted @ 2021-11-19 17:28 JianFeng丶 阅读(709) 评论(0) 推荐(0)
摘要: 去重函数 //去重函数 int REMOVE_DUPLICATE(int n,int array[]) { int i,j,k=n,m; for (i = 0; i < k; i++) { if (array[i] == -1)continue; for(j=i+1;j<k;j++) if (arr 阅读全文
posted @ 2021-11-14 14:43 JianFeng丶 阅读(28) 评论(0) 推荐(0)
摘要: 实验准备 建立project a) b) Code #include<iocc2530.h> #define key P1_2 #define led1 P1_0 #define led2 P1_1 void delay(unsigned int i){ unsigned char j; while 阅读全文
posted @ 2021-11-11 14:23 JianFeng丶 阅读(136) 评论(0) 推荐(0)