Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <fstream>
- using namespace std;
- int main()
- {
- //1 : On demande de saisir un mot
- string mot;
- string cherche;
- string melange;
- cout << "Ecrivez un mot on va s'amuser !" << endl << endl;
- cin >> mot;
- //2 : On mélange les lettres du mot
- //3 : On demande à l'utilisateur quel est le mot mystère
- while (cherche != mot)
- {
- cout << endl << "Quel est ce mot ?" << " " << melange << endl << endl;
- cin >> cherche;
- }
- if (cherche == mot)
- {
- cout << endl << "Tu as trouve le mot !" << endl;
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement