Friday, April 8, 2022

Simple Password in C++

 A simple password in C++ programming that I wrote I hope you will find useful.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.


My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

Please subscribe to my channel  https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg


=================================================

Want to support my channel?


GCash Account


Jake Pomperada

09173084360


Paypal

https://paypal.me/jakerpomperada


Patreon

https://www.patreon.com/jakerpomperada





Program Listing

#include <iostream>
#include <cstring>

using namespace std;

int main()
{
char password[]="123admin";
char pass[10];
cout <<"\n\n";
cout <<"\tSimple Password in C++";
cout <<"\n\n";
do
{
    cout <<"\n";
cout<<"\tGive your password : ";
cin.getline(pass,10);
if(strcmp(password,pass)!=0) {
cout <<"\n";
cout<<"\tInvalid Password. Try Again\n";
} else {
cout <<"\n";
cout<<"\tPassword Accepted. Welcome To The System.\n";
}
}while(strcmp(password,pass)!=0);
}

No comments:

Post a Comment