Untitled
unknown
c_cpp
2 years ago
533 B
5
Indexable
// ConsoleApplication1.cpp : Этот файл содержит функцию "main". Здесь начинается и заканчивается выполнение программы.
//
#include <iostream>
#include <string>
using namespace std;
string oleg(string pisun) {
for (int i = 0; i < pisun.length(); i++)
{
if (pisun[i] == 'N') pisun[i] = 'A';
else if (pisun[i] == 'A') pisun[i] = 'N';
}
return pisun;
}
int main()
{
string pisun;
cin >> pisun;
oleg(pisun);
cout << oleg(pisun);
}Editor is loading...
Leave a Comment