1 条题解
-
1陈烨鑫 (chenyexin) LV 10 @ 2023-4-27 20:29:59
#include<iostream> #include<cstdio> #include<string.h> using namespace std; int main(){ int c; scanf("%d",&c); while(c--){ char str[102]; cin>>str; int num=0,flag=0; for(int i=0;i<strlen(str);i++){ num=0; flag=0; while(str[i]>='0'&&str[i]<='9'){ flag=1; num=num*10+str[i]-48; i++; } if(flag) printf("%c",num+'A'-1); if(str[i]=='#') printf(" "); } cout<<endl; } return 0; }
- 1
信息
- ID
- 1123
- 时间
- 1000ms
- 内存
- 32MiB
- 难度
- 8
- 标签
- 递交数
- 11
- 已通过
- 7
- 上传者