好吧,我想知道如何按字母更改数字,我想1
用:x:
以下代码替换数字:
string stng;
printf("Enter with number:");
cin >> stng;
replace(stng.begin(), stng.end(), '1', 'x');
cout << stng << endl;
如您所见,我正在使用它来替换:replace(stng.begin(), stng.end(), '1', 'x');
但是一旦我只能更改1
for x
,我就想替换 for:x: