Coder Social home page Coder Social logo

lecture9loopsies's Introduction

Lecture9Loopsies

//bruteforceaatack I #include #include #using namespace

int main() {

string pw = "246";
string input;

cout << "Enter Password! " << endl;
cin >> input;

while (input != pw) {
	system("Cls");
	cout << "Enter Password!" << endl;
	cin >> input;
}
cout << "Welcome to Secured Company" << endl;

return 0; }

//Bruteforceattack II #include #include using namespace std;

int main() {

string spassword = "246";
string epass;
int lock = 5;
cout << "Enter Password!" << endl;
cin >> epass;

while (spassword != epass && lock > 0) {

	cout << "You have entered incorrect password, try again\n";
	cin >> epass;
	lock--;
}
while (spassword == epass) {
	cout << "you have entered the correct password!" << endl;
	break;
}

}

//Improvement #include using namespace std;

int main() {

char Input;

do {
	cout << "Would you like to quit (Y/N)?" << endl;
	cin >> Input;


	while (Input == 'n' || Input == 'N') {
		cout << "Okay get back to work!" << endl;
		return 0;
	}
}

while ((Input != 'Y') && (Input != 'y')); {
cout << "Okay, pack your things! Goodbye!" << endl;
return 0;
} 

//Loopy loopsies #include using namespace std;

int main() { int myInt; int counter=0;

cout << "Lets count 1 to five!" << endl;
cin >> myInt;

while (counter < myInt) {
	cout << counter + 1 << endl;
	counter++;
}

return 0;

}

lecture9loopsies's People

Contributors

makus014 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.