#include <iostream>
#include <string>

using namespace std;

int main()
{
string a,b;
a="Dsp";
b="Tian";

char temp[5];
string ab;
for(int i=0;i<13;i++)
{
sprintf(temp,"%d",i);
ab=temp;
cout<<a+ab+b<<endl;

}
system("pause");
return 0;
}

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-02
  • 2022-02-13
  • 2022-12-23
  • 2021-06-18
猜你喜欢
  • 2022-12-23
  • 2021-07-22
  • 2021-10-24
  • 2021-12-24
  • 2021-08-20
  • 2021-10-04
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案