- 283
- 90
Здрасьте всем! написал на c++ тренер капчи для намальск рп.
Приятного использования
C++:
#include <iostream>
#include <string>
#include <cstdlib>
#include <ctime>
#include <Windows.h>
using namespace std;
string generateCaptcha() {
string choices = "1234567890qwertyuiopasdfghjklzxcvbnm";
string captcha;
for (int i = 0; i < 5; i++) {
int r = rand() % choices.size();
captcha += choices[r];
}
return captcha;
}
int main() {
srand(time(0));
cout << "quwin clan!\n";
while (true) {
string captcha = generateCaptcha();
cout << "\nCaptcha: " << captcha << endl;
clock_t start_time = clock();
string result;
cin >> result;
if (result == captcha) {
double elapsed_time = double(clock() - start_time) / CLOCKS_PER_SEC;
cout << "You entered the captcha in " << elapsed_time << " seconds" << endl;
}
else {
cout << "Incorrect characters entered." << endl;
}
}
return 0;
}
Приятного использования