博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU- 2265 Encoding The Diary
阅读量:5363 次
发布时间:2019-06-15

本文共 1350 字,大约阅读时间需要 4 分钟。

                        Encoding The Diary

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)

Total Submission(s): 1289    Accepted Submission(s): 757

Problem Description
You know many girls likes writing diaries,of course they have some secrets don’t want others to know.So this time, they asked you to encoding the diary.
The rule is :
Give you a string. Such as “ARE YOU AC?”
Firstly , delete all spaces in this string.
You will get “AREYOUAC?”
String AREYOUAC?
Index 123456789
Secondly,print the characters who’s index are the multiple of 3.
Thirdly, print the characters who’s index are the multiple of 2.If it has been printed,just ignore it .
At last,print the characters that have not been printed.
 

 

Input
Each case will contain a string in one line.You may suppose the length of the string will not exceed 200.
 

 

Output
For each case, output the encoded string in one line.
 

 

Sample Input
ARE YOU AC?
 

 

Sample Output
EU?RYCAOA
1 #include
2 #include
3 int main() 4 { 5 char str1[200],str2[200]; 6 int i,k; 7 while(gets(str1)) 8 { 9 k=1;10 for(i=0;str1[i]!='\0';i++)11 {12 if(str1[i]!=' ')13 str2[k++]=str1[i];14 }15 str2[k]='\0';16 17 for(i=1;i

 

 

转载于:https://www.cnblogs.com/cancangood/p/3407398.html

你可能感兴趣的文章
Elasticsearch安装中文分词插件IK
查看>>
进阶4:常见函数-单行函数
查看>>
简述企业信息化与企业架构关系
查看>>
npoi List 泛型导出
查看>>
第七章笔记
查看>>
“滑机约拍”--第一阶段冲刺
查看>>
任务管理器隐藏一个进程
查看>>
MySQL死锁查询【原创】
查看>>
二维傅里叶变换的应用-相位相关
查看>>
元类type
查看>>
Linux网络协议栈(四)——链路层(1)
查看>>
angular指令的简单练习
查看>>
为什么越学反而越蠢?碎片化学习是个骗局
查看>>
每天学习Linux——日志管理
查看>>
数组排序组合最小数字
查看>>
C#中的Invoke 今天在看别人的博客中发现了一个关于invoke的博文转过来看看
查看>>
如何在Windows系统中设置Python程序定时运行
查看>>
链表的新增删除
查看>>
xposed插件微信机器人
查看>>
HTTP 错误 500.21 - Internal Server Error 解决方案
查看>>