C++

[C++]명품 C++ 프로그래밍 실습문제 11장 10번

Hs’s Coding vlog 2023. 1. 26. 17:50

[C++]명품 C++ 프로그래밍 실습문제 11장 10번

[C++]명품 C++ programming 실습문제 11장 10번

명품 C++ 프로그래밍실습문제/연습문제 /C++

#include <iostream>
#include <string>
#include <cstring>
#include <vector>
#include <ctime>
#include <cstdlib>
using namespace std;
istream& prompt(istream& ins) {
	cout << "암호?";
	return ins;
}

int main() {
    string passswords;
	while (true)
	{
		cin >> prompt >> passswords;
		if (passswords == "C++") {
			cout << "login success!!" << endl;
			break;
		}
		else
			cout << "login fail. try again !!!!" << endl;
	}
    return 0;
}