TextCoder
@TextCoder
0
Pin cracker
So, this is a shot at making a password cracker. It’s crude but effective.
Hope you like it!23
1
0
I don't know why this doesn't work. I'm also a beginner, so please don't criticise any stupid mistakes.
OldWizard209 The problem is on line 24. Remove the colons from this:
if(c == 1)
;{
cout<<"Answer:\n";
cout<<a*b<<endl;
}else if(c == 2)
;{
cout<<"Answer:\n";
cout<<a/b<<endl;
}
}
to this:
if(c == 1){
cout<<"Answer:\n";
cout<<a*b<<endl;
}else if(c == 2){
cout<<"Answer:\n";
cout<<a/b<<endl;
}
}
`2 years ago
a brute force PIN cracker
idk what to put here
DynamicSquid For visual mode, I think one thing that's slowing you down is you're using endl. Try using \n instead, and it should be a little faster (in theory)2 years ago