代码搜索:LED取模

找到约 10,000 项符合「LED取模」的源代码

代码结果 10,000
www.eeworm.com/read/186344/8943216

opt 模快化设计范例.opt

### uVision2 Project, (C) Keil Software ### Do not modify ! cExt (*.c) aExt (*.s*; *.src; *.a*) oExt (*.obj) lExt (*.lib) tExt (*.txt; *.h; *.inc) pExt (*.plm) CppX (*.cpp) DaveTm {
www.eeworm.com/read/186344/8943837

plg 模快化设计范例.plg

礦ision3 Build Log Project: E:\C51p编程\模快化设计范例.uv2 Project File Date: 10/30/2006 Output:
www.eeworm.com/read/378401/9232310

plg 大指数幂模运算.plg

Build Log --------------------Configuration: 大指数幂模运算 - Win32 Debug-------------------- Command Lines Creating temporary file "C:\Temp\RSPAA.tmp
www.eeworm.com/read/378401/9232312

dsw 大指数幂模运算.dsw

Microsoft Developer Studio Workspace File, Format Version 6.00 # 警告: 不能编辑或删除该工作区文件! ############################################################################### Project: "大指数幂模运算"=".\大指数幂模运算
www.eeworm.com/read/378401/9232313

dsp 大指数幂模运算.dsp

# Microsoft Developer Studio Project File - Name="大指数幂模运算" - Package Owner= # Microsoft Developer Studio Generated Build File, Format Version 6.00 # ** DO NOT EDIT ** # TARGTYPE "Win32 (x86) C
www.eeworm.com/read/378401/9232314

cpp 大指数幂模运算.cpp

#include using namespace std; #define PUBLICKEY 187 long module(long key,long exponential) //key:底数 exponential:指数 mod:模 { if (exponential==0) return 1; long mod=module(key,exp
www.eeworm.com/read/469138/6978203

txt 模线性方程(组).txt

#ifdef WIN32 typedef __int64 i64; #else typedef long long i64; #endif //扩展Euclid求解gcd(a,b)=ax+by int ext_gcd(int a,int b,int& x,int& y){ int t,ret; if (!b){ x=1,y=0; return a; } re