自己设置一个十位数密码,自己破解,程序能运行,就是不能输出破解后的密码
// 33333333333.cpp : 定义控制台应用程序的入口点。//
#include "stdafx.h"
#include<iostream>
#include<windows.h>
#include<time.h>
using namespace std;
int _tmain()
{ char a[10];
char b[10];
srand((unsigned)time(0));
for(int i=0;i<10;i++)
{ a[i]=(char)((rand()%(130-32))+32+1);
}
for(int i=0;i<10;i++)
cout<<a[i]<<" ";
cout <<endl;
do{
for(int i=0;i<10;i++)
{
b[i]=(char)((rand()%(130-32))+32+1);
}
}while( a[0]!=b[0]||a[1]!=b[1]||a[2]!=b[2]||a[3]!=b[3]
||a[4]!=b[4]||a[5]!=b[5]||a[6]!=b[6]||a[7]!=b[7]||a[8]!=b[8]||a[9]!=b[9]);
for(int i=0;i<10;i++)
cout<<b[i]<<" ";
cout<<endl;
system ("pause");
return 0;
}