代码搜索:PLEASE
找到约 10,000 项符合「PLEASE」的源代码
代码结果 10,000
www.eeworm.com/read/138667/13226456
m exppow.m
a=input('Please input a=:');
b=input('Please input b=:');
addpow=zeros(1,10);
subpow=zeros(1,10);
for k=1:10
[addpow(k),subpow(k)]=ppower(a,b,k);
end
addpow
subpow
www.eeworm.com/read/239041/13305338
txt readme.txt
This folder contains graphics. Please view the different catagories of
these graphics to find images.
www.eeworm.com/read/319814/13441701
readme
README
------
Note: any comments please goto wheelz at
This program is based on drcomsuite-0.1.12 and libdrcom-0.0-20050423-2
written by William Poetra Yoga Hadisoes
www.eeworm.com/read/307583/13720100
txt mlines.txt
IdleMsg This is a help channel. You are not allowed to idle in it. Please part now or you will be banned.
www.eeworm.com/read/306286/13747761
txt license.txt
LICENSE
This program is licensed under the GNU GPL.
For more information, please see the web page at:
http://www.fsf.org/copyleft/gpl.htm
www.eeworm.com/read/305700/13763079
m masked_fft.m
function y = masked_FFT(x,mask)
%
% Computes a 2D partial FFT transform,
% only for those frequencies for which
% mask is not zero. The result is returned
% in an array of size (k,1) where k is
% the
www.eeworm.com/read/305195/13777055
readme
This is MDE for MiniGUI 2.0.x
* If your MiniGUI configured as MiniGUI-Processes
Please run `./configure', `make' to compile `mginit' and other programs:
$ ./configure
$ make
www.eeworm.com/read/302979/13824075
txt license.txt
LICENSE
This program is licensed under the GNU GPL.
For more information, please see the web page at:
http://www.fsf.org/copyleft/gpl.htm
www.eeworm.com/read/300920/13880390
c rsa.c
#include
int candp(int a,int b,int c)
{ int r=1;
b=b+1;
while(b!=1)
{
r=r*a;
r=r%c;
b--;
}
printf("%d",r);
return r;
}
void main()
{
int p,q,e,d,m,n,
www.eeworm.com/read/300920/13880393
txt 新建 文本文档.txt
RSA算法c语言实现
这个是我帮个朋友写的,写的时候发现其实这个没那么复杂,不过,时间复杂度要高于那些成型了的,为人所熟知的RSA算法的其他语言实现.
#include
int candp(int a,int b,int c)
{ int r=1;
b=b+1;
while(b!=1)
{
r=r*a;
r=r%c;
b--;
}