代码搜索:Caesar
找到约 148 项符合「Caesar」的源代码
代码结果 148
www.eeworm.com/read/289585/8541183
java caesar.java
/*
*凯撒加密算法
*此算法中区分了字母的大小写,并可以保留标点符号
*/
public class Caesar
{
int key = 3;
public String getCipher(String message)//to encrypt
{
char msgChar [] = message.toCharArray();
int len = msg
www.eeworm.com/read/381268/9099914
c caesar.c
#include
#include
char encrypt(char ch,int n)/*加密函数,把字符向右循环移位n*/
{
while(ch>='A'&&ch='a'&&ch
www.eeworm.com/read/378397/9232322
cpp caesar密码.cpp
#include
#include
using namespace std;
const int MAX_LEN=100;
char str[MAX_LEN];
int main()
{
cout
www.eeworm.com/read/378397/9232323
dsp caesar密码.dsp
# Microsoft Developer Studio Project File - Name="Caesar密码" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86)
www.eeworm.com/read/378397/9232325
plg caesar密码.plg
Build Log
--------------------Configuration: Caesar密码 - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\Temp\RSP11.tm
www.eeworm.com/read/378397/9232326
ncb caesar密码.ncb
www.eeworm.com/read/378397/9232328
dsw caesar密码.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# 警告: 不能编辑或删除该工作区文件!
###############################################################################
Project: "Caesar密码"=".\Caesar
www.eeworm.com/read/378397/9232329
opt caesar密码.opt
www.eeworm.com/read/370870/9578563
c caesar.c
#include
#include
#include
int sum=0;
int a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z=0;
void decode (char data[], int code);
void toCalculate(char s1[
www.eeworm.com/read/174554/9582431