小明收到了一封很奇怪的邮件,里面全是一些符号和数字,但是信上面给出了破译方法,具体方法如下:
(1)将1变为‘A’,2变为‘B’,...,26变为‘Z’;
(2)将‘#’变为一个空格;
(3)忽略‘-’,原始信件中‘-’仅仅用来分割数字。
现请你编程帮助小明破译这封邮件。
标签:输出 eof ring use flag lag set har int
4
9#23-9-12-12#19-20-5-1-12#1-20#12-5-1-19-20#15-14-5#10-5-23-5-12
1-14-4#12-5-1-22-5#20-8-5#13-21-19-5-21-13#9-14#20#13-9-14-21-20-5-19
1-6-20-5-18#20-8-5#15-16-5-14-9-14-7#15-6#20-8-5#5-24-8-9-2-9-20-9-15-14
7-15-15-4#12-21-3-11
I WILL STEAL AT LEAST ONE JEWEL
AND LEAVE THE MUSEUM IN T MINUTES
AFTER THE OPENING OF THE EXHIBITION
GOOD LUCK
1 #include<iostream> 2 #include<cstdio> 3 #include<string.h> 4 using namespace std; 5 int main(){ 6 int c; 7 scanf("%d",&c); 8 while(c--){ 9 char str[102]; 10 cin>>str; 11 int num=0,flag=0; 12 for(int i=0;i<strlen(str);i++){ 13 num=0; 14 flag=0; 15 while(str[i]>=‘0‘&&str[i]<=‘9‘){ 16 flag=1; 17 num=num*10+str[i]-48; 18 i++; 19 } 20 if(flag) printf("%c",num+‘A‘-1); 21 if(str[i]==‘#‘) printf(" "); 22 } 23 cout<<endl; 24 } 25 return 0; 26 }
Mist Note:上面的代码借鉴了大佬的,自己的代码总是无法通过,但是我测试不出来,还是大佬的方法比较好。
num=num*10+str[i]-48;这行代码是连续的字符数字转化为数字的代码,今天学习了,因为字符‘0‘的ASCII码是48,所以下次可以注意利用
这样的方式去转化,也是非常方便的。
1 #include<stdio.h> 2 #include<string.h> 3 char str[27]={‘@‘,‘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‘}; 4 int main(){ 5 int c; 6 scanf("%d",&c); 7 while(c--){ 8 char a[100],temp[2]; 9 memset(temp,‘\0‘,sizeof(temp)); 10 memset(a,‘\0‘,sizeof(a)); 11 scanf("%s",a); 12 int len = strlen(a),k=0,t; 13 for(int i=0;i<len;i++){ 14 if(a[i]!=‘#‘ && a[i]!=‘-‘){ 15 temp[k++]=a[i]; 16 }else{ 17 sscanf(temp,"%d",&t); 18 memset(temp,‘\0‘,sizeof(temp)); 19 k=0; 20 printf("%c",str[t]); 21 if(a[i]==‘#‘) printf(" "); 22 } 23 } 24 sscanf(temp,"%d",&t); 25 printf("%c",str[t]); 26 printf("\n"); 27 } 28 return 0; 29 }
Mist Node:我自己写的代码,感觉很low哈,但是我找不到错在哪里,提供的测试和自己编的例子都是正确的,可是提交就是错误,截至发布本随笔,还没发现哪里有问题。
标签:输出 eof ring use flag lag set har int
原文地址:https://www.cnblogs.com/mist2019/p/10336342.html