题目很简单,输入一个字符串要求将其中的t或者T改为对应的e或者E,并统计修改的字符数输出,
例如
输入为:
attbecTtTgh
输出为:
aeebecEeEgh
5
代码:
#include
#include
#include
using namespace std;
int main()
{
int count = 0;
char c;
while((c=getchar())!='\n')
{
if(c == 't'||c == 'T')
{
c=(c == 't')?('e'):('E');
count++;
}
cout<<c;
}
cout<<endl<<count;
return 0;
}