#include#include using namespace std;int main(){ char str[1024]; cin>>str; int i = 0; while(str[i]!='\0') { i++; } int j= 0; int n=i; char str2[1024]; for(j=0; j
本文共 328 字,大约阅读时间需要 1 分钟。
#include#include using namespace std;int main(){ char str[1024]; cin>>str; int i = 0; while(str[i]!='\0') { i++; } int j= 0; int n=i; char str2[1024]; for(j=0; j
转载于:https://www.cnblogs.com/wystan/p/4556411.html