[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;
}
'C++' 카테고리의 다른 글
[C++] 명품 C++ 프로그래밍 실습문제 11장 오픈챌린지/openchallenge (0) | 2023.01.26 |
---|---|
[C++]명품 C++ 프로그래밍 실습문제 11장 12번 (0) | 2023.01.26 |
[C++]명품 C++ 프로그래밍 실습문제 11장 9번 (0) | 2023.01.26 |
[C++]명품 C++ 프로그래밍 실습문제 11장 7번 (0) | 2023.01.26 |
[C++]명품 C++ 프로그래밍 실습문제 11장 5번 (0) | 2023.01.26 |