Write a program to check the password is too strong or strong or weak & also check the password is validate or not.. you can use code of c/c++ and you want ....
hadisur_rahman 0 Newbie Poster
Recommended Answers
Jump to PostWhat does strong mean? What does weak mean? What is a valid password?
Jump to Post#include <iostream> #include <string> int main() { std::cout << "Enter password: " << std::endl; std::string input; std::cin >> input; if (input.size() < 2) { std::cout << "Too weak"; return 0; } if (input.size() > 2) { std::cout <<"Too strong"; return 17; } std::cout << "Password is valid" …
All 6 Replies
Moschops 683 Practically a Master Poster Featured Poster
ShiftLeft 15 Junior Poster in Training
hadisur_rahman 0 Newbie Poster
hadisur_rahman 0 Newbie Poster
Moschops 683 Practically a Master Poster Featured Poster
Lutina 2 Newbie Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.