0
点赞
收藏
分享

微信扫一扫

HDOJ   2081   手机短号

花明 2022-08-22 阅读 80


题目:​​http://acm.hdu.edu.cn/showproblem.php?pid=2081​​

#include <stdio.h>
#include <string.h>
int main()
{
int T;
char a[11];
scanf("%d",&T);
while(T--)
{
scanf("%s",a);
printf("6");
for(int i=6;i<11;i++)
printf("%c",a[i]);
puts("");
}
return 0;
}

举报

相关推荐

0 条评论