代码搜索:Caesar
找到约 148 项符合「Caesar」的源代码
代码结果 148
www.eeworm.com/read/302609/7125244
cpp caesar.cpp
#include
#include
#include
#include
using namespace std;
/**
Prints usage instructions.
@param program_name the name of this program
*/
void
www.eeworm.com/read/454457/7390053
c caesar.c
/*
* Copyright (C) 1993 Eric E. Moore and Thomas W. Strong
*
* All rights reserved. Any unauthorized distribution of this
* program is prohibited.
*/
#include "header.h"
www.eeworm.com/read/332784/12728811
java caesar.java
import java.io.*;
public class Caesar {
public static void encode(String PlainText, int Offset) {
String CipherText = "";
for (int i = 0; i < PlainText.length(); i++) {
if (PlainText.ch
www.eeworm.com/read/306662/13740477
c caesar.c
#include
#include
int n,i,m,k; /*全局变量,n表示密钥*/
int jiami(char x[200],char y[200]) /*加密部分*/
{
printf("***凯撒体制加密***\n");
printf("请输入明文:\n");
scanf("%s",x);
k=
www.eeworm.com/read/306137/13751794
java caesar.java
import java.io.*;
class Caesar
{
public static void main(String args [])
throws IOException
{
InputStreamReader reader1 = new InputStreamReader(System.in);
BufferedReader input
www.eeworm.com/read/131315/5946781
c caesar.c
/*
* Copyright (c) 1989, 1993
* The Regents of the University of California. All rights reserved.
*
* This code is derived from software contributed to Berkeley by
* Rick Adams.
*
* Authors:
www.eeworm.com/read/131315/5946783
6 caesar.6
.\" Copyright (c) 1989, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, a
www.eeworm.com/read/130241/5962728
java caesar.java
/**
@version 1.00 1997-09-10
@author Cay Horstmann
*/
import java.io.*;
/**
Encrypts a file using the Caesar cipher.
*/
public class Caesar
{
public static void main(String[
www.eeworm.com/read/129399/5973809
java caesar.java
/**
* @version 1.00 1997-09-10
* @author Cay Horstmann
*/
import java.io.*;
public class Caesar
{ public static void main(String[] args)
{ if (args.length != 3)
{ System.out
www.eeworm.com/read/264421/11315391