С++ бағдарламалау тілінде жазылған
#include <iostream>
#include <string>
using namespace std;
int main(int argc, char *argv[]) {
char a[10] = {'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a'}, b = 'b';
int count = 2;
cout << "1: ";
for (int i = 0; i < 10; i++)
cout << a[i];
cout << endl;
for (int i = 0; i < 9; i++)
for (int j = 0; j < 10 - i; j++) {
cout << count << ": ";
for (int start = 0; start < j; start++)
cout << a[start];
for (int bInt = 0; bInt < i + 1; bInt++)
cout << b;
for (int end = j + i + 1; end < 10; end++)
cout << a[end];
cout << endl;
count++;
}
cout << count << ": ";
for (int i = 0; i < 10; i++)
cout << b;
cout << endl;
return 0;
}
Бағдарлама нәтижесін тіркеймін: