E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
Decowding
HDU 2716 Message
Decowding
http://acm.hdu.edu.cn/showproblem.php?pid=2716 水题 View Code #include <iostream> using namespace std ; int main() { char key[27],mes[81] ; while(~scanf("%s%*c&quo
·
2015-11-13 02:30
message
OpenJudge / Poj 2141 Message
Decowding
id=2141 http://bailian.openjudge.cn/practice/2141/ 2.题目: Message
Decowding
Time Limit: 1000MS
·
2015-11-10 22:17
message
POJ 2141 && HDU 2716 Message
Decowding
(水~)
Description给出一个26位英文密码,分别对应顺序排列的26个英文字母,大写对应大写字母,小写对应小写,给出一段密文,将其翻译成正确内容Input输入包括两行,第一行为26个小写字母表示顺序的26个字母对应的密码,第二行是待翻译内容Output根据密码将密文翻译成正确内容SampleInputeydbkmiqugjxlvtzpnwohracsfKifqouazarxasuarbtiyaag
V5ZSQ
·
2015-08-26 16:00
POJ-2141 Message
Decowding
-奶牛密码
MessageDecowdingTimeLimit:1000MS MemoryLimit:65536KTotalSubmissions:12242 Accepted:6844DescriptionThecowsarethrilledbecausethey'vejustlearnedaboutencryptingmessages.Theythinktheywillbeabletousesecretm
MIKASA3
·
2015-08-22 09:00
C++
poj
密码
C - Message
Decowding
C- MessageDecowdingTimeLimit:1000MS MemoryLimit:65536KB 64bitIOFormat:%I64d&%I64uSubmit StatusDescriptionThecowsarethrilledbecausethey'vejustlearnedaboutencryptingmessages.Theythinktheywillbea
u014028231
·
2014-08-11 16:00
POJ 2141 Message
Decowding
(map)
MessageDecowdingTimeLimit: 1000MS MemoryLimit: 65536KTotalSubmissions: 11735 Accepted: 6536DescriptionThecowsarethrilledbecausethey'vejustlearnedaboutencryptingmessages.Theythinktheywillbeabletousesec
u013263923
·
2014-07-24 14:00
(字符串的处理4.7.13)POJ 2141 Message
Decowding
(字符串的加密与解密&&所有都是字符且是2行形式的输入输出处理)
packagecom.njupt.acm; importjava.util.Arrays; importjava.util.Scanner; publicclassPOJ_2141{ publicstaticvoidmain(String[]args){ Scannerscanner=newScanner(System.in); while(scanner.hasNextLine()){ S
caihongshijie6
·
2013-10-28 15:00
poj 2141 Message
Decowding
一次A题的感觉真的棒极了,这题没什么特别的地方,就是一个置换解密,注意大小写就可以了。对了还要注意getchar(),因为直接回车会把message数组占住#include #include intmain() { charkey[27]; scanf("%s",key); //printf("key=%s\n\n",key);//testprint getchar(); charmess
Scythe666
·
2013-10-06 10:00
POJ2141(Message
Decowding
)
MessageDecowdingTimeLimit:1000MS MemoryLimit:65536KTotalSubmissions:10890 Accepted:6021DescriptionThecowsarethrilledbecausethey'vejustlearnedaboutencryptingmessages.Theythinktheywillbeabletousesecretm
wangwenhao00
·
2013-04-15 16:00
HDU2716:Message
Decowding
ProblemDescriptionThecowsarethrilledbecausethey'vejustlearnedaboutencryptingmessages.Theythinktheywillbeabletousesecretmessagestoplotmeetingswithcowsonotherfarms.Cowsarenotknownfortheirintelligence.Th
libin56842
·
2013-03-28 21:00
哈希
ACM
HDU
Message
Decowding
(2716)
ProblemDescriptionThecowsarethrilledbecausethey'vejustlearnedaboutencryptingmessages.Theythinktheywillbeabletousesecretmessagestoplotmeetingswithcowsonotherfarms.Cowsarenotknownfortheirintelligence.Th
xiang建
·
2012-12-24 23:00
递归
ACM
message
杭电
2716
Decowding
北大ACM poj2141 Message
Decowding
MessageDecowdingTimeLimit:1000MS MemoryLimit:65536KTotalSubmissions:10326 Accepted:5672DescriptionThecowsarethrilledbecausethey'vejustlearnedaboutencryptingmessages.Theythinktheywillbeabletousesecretm
gubojun123
·
2012-07-28 17:00
c
encryption
output
plot
POJ-2141-Message
Decowding
-解题报告
注意运用getline函数来获得一行字符串。 #include#include#includeusingnamespacestd;intmain(){stringkeyStr,msgDecStr,aLine;getline(cin,aLine);keyStr=aLine;constchar*key=keyStr.c_str();getline(cin,aLine);msgDecStr=aLine;
lihao21
·
2010-12-20 23:00
c
String
ACM详解(8)——加密
1、Message
Decowding
Description The cows are thrilled because they've just learned about encrypting
ihuashao
·
2010-07-23 19:00
编程
C++
c
算法
C#
ACM详解(8)——加密
1、Message
Decowding
Description The cows are thrilled because they've just learned about encrypting
lixucheng
·
2010-07-23 19:00
编程
C++
c
算法
C#
ACM详解(8)——加密
1、Message
Decowding
Description The cows are thrilled because they've just learned about encrypting
seloba
·
2010-07-23 19:00
编程
C++
c
算法
C#
ACM 2141 Message
Decowding
另类解码,只是最后不能输出换行。。。#include#includeusing namespace std;char key[30];int main(){cin>>key;cin.ignore(100,'\n');char text[100];cin.getline(text,100);int i,j,len;len=strlen(text);for(i=0;i='A'&&text[i]<='Z
啥也别说了
·
2008-11-28 14:00
上一页
1
下一页
按字母分类:
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
其他