Untitled
unknown
c_cpp
a year ago
534 B
0
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] == 'O') pisun[i] = 'A'; else if (pisun[i] == 'O') pisun[i] = 'N'; } return pisun; } int main() { string pisun; cin >> pisun; oleg(pisun); cout << oleg(pisun); }
Editor is loading...
Leave a Comment