手机短号(hdu2081)
Posted Strugglinggirl
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了手机短号(hdu2081)相关的知识,希望对你有一定的参考价值。
这里字符串的输入用gets_s()函数。
#include<stdio.h> using namespace std; int main() { int N; scanf_s("%d", &N); getchar(); while (N--) { char a[12]; gets_s(a); printf("6"); for (int i = 6; i < 11; i++) { printf("%c", a[i]); } printf("\\n"); } }
以上是关于手机短号(hdu2081)的主要内容,如果未能解决你的问题,请参考以下文章