C51_点亮第一个LED
#include "reg52.h" sbit led=P0^0; void main(){ while(1) { led=1; } }
2022-09-21
9