Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 자바스크립트 node
- php
- numpy
- 자바스크립트 API
- oracle db
- 보안뉴스한줄요약
- 자바스크립트 jQuery
- GIT
- 카카오프로젝트
- 랜섬웨어
- 자바스크립트 element api
- javascript
- 자바스크립트 기본 문법
- 자바스크립트 객체
- 깃허브
- 보안뉴스
- 자바스크립트
- 보안뉴스 요약
- 카카오프로젝트100
- 오라클
- 카카오프로젝트 100
- 보안뉴스 한줄요약
- Oracle SQL
- 보안뉴스요약
- python
- 파이썬
- oracle
- ES6
- 다크웹
- 자바스크립트 prototype
Archives
- Today
- Total
FU11M00N
[ C++ ] 임의의 문자 알아맞추기 게임 (행맨) 본문
list 배열에 있는 한개의 문자열이 랜덤으로 str 변수에 들어감.
문자를 하나씩 입력하면서 문자를 맞춰나가는 게임.
아래는 코드와 결괏값입니다.
#include <iostream>
#include <string>
#include <ctime>
#include <cstdlib>
using namespace std;
int main() {
srand(time(NULL));
char ch;
string list[]= {"apple","bear","banana","happy"};
int r =rand()%5;
string str = list[r];
cout<<"문자를 맞춰보세요 : ";
string res(str.length(),'_');
cout<<res<<endl;
while(true){
cout<<"문자를 입력 : ";
cin >> ch;
for(int i=0; i<str.length(); i++){
if(ch==str[i]){
res[i]=ch;
cout<<res<<endl;
}
}
if(str== res){
cout<<"성공"<<endl;
break;
}
}
return 0;
}
'Programming > C++' 카테고리의 다른 글
[ C++ ] 함수중복 (0) | 2021.06.01 |
---|---|
[ C++ ] 틱택토(Tic-Tca-Toe) 게임 (0) | 2021.04.15 |
[ C++ ] C++ 으로 구현한 은행프로그램 (feat. 동적할당) (0) | 2021.03.30 |
[ C++ ] 재밌는 티비 놀이 (0) | 2021.03.30 |
[ C++ ] C++ 객체 , 클래스 만들기 (0) | 2021.03.23 |
Comments