일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- jQuery
- Pwndbg
- lord of sql injection
- object
- 백준 알고리즘
- 사칙연산
- 객체
- 배열
- element 조회
- property
- 백준 파이썬
- IF문
- 김성엽 대표님
- htmlspecialchars
- xss game
- xss game 풀이
- python
- sql injection
- blind sql injection
- 자바스크립트
- 함수
- burp suite
- 파이썬
- github
- 포인터
- window
- suninatas 풀이
- document
- 메소드
- 조건문
Archives
- Today
- Total
power-girl0-0
[ C++ ] 헹맨 게임 본문
728x90
조건 :
- 배열에 입력되어 있는 문자를 랜덤으로 하나 뽑아내서 맞추는 게임이다.
- 문자 하나씩 입력받아와서, 전체를 맞추면 성공이다.
- 소문자, 대문자를 구분해야 한다.
- find를 이용해서 문자를 찾아야 한다.
소스코드 :
#include <string> #include <iostream> #include <ctime> //<time.h> #include <cstdlib> //<stdlib.h> using namespace std; int main(){ srand(time(NULL)); string list[]={"apple","C++ ++","banana","orange","grape","lemon"}; int r = rand()%6; string str=list[r]; string sol(str.length(),'_'); //str길이만큼 _문자로 뽑아달라! cout<<list[r]<<endl; char ch; cout<<"문자 알아맞추기"; cout<<endl<<sol<<endl; while(1){ cout<<endl<<"글자 : "; cin>>ch; if(str.find(ch)==-1){ continue; }else{ for(int i=0; i<sol.length(); i++){ if(str.find(ch,i)<=i){ sol[i] = ch; } } cout<<sol<<endl; } if(str == sol){ cout<<"성공"<<endl; break; } } return 0; }
결과 :
728x90
'언어 > C++' 카테고리의 다른 글
[ C++ ] vector을 활용한 예제 (0) | 2021.06.01 |
---|---|
[ C++ ] 함수 중복 (0) | 2021.05.04 |
[ C++ ] find를 활용하여, 문자 찾기 (0) | 2021.04.13 |
[ C++ ] 동적할당을 이용하여 원의 면적과 둘레 구하기 (0) | 2021.04.06 |
[ C++ ] 메모리 (0) | 2021.04.06 |
Comments