-
Автор темы
- #1
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Возможно ли ускорить?
C++:
#include "pch.h"
#include <iostream>
#include<fstream>
using namespace std;
int main()
{
ofstream fout;
fout.open("password.txt");
for (int a=0; a < 10; a++)
for (int b=0; b < 10; b++)
for (int c=0; c < 10; c++)
for (int d = 0; d < 10; d++)
for (int e = 0; e < 10; e++)
for (int f = 0; f < 10; f++)
for (int j = 0; j < 10; j++)
for (int k = 0; k < 10; k++)
fout << a << b << c << d << e << f << j << k << endl;
fout.close();
return 0;
}