[C++] 가위바위보 게임
2022. 6. 2. 21:45ㆍ코딩 1막 <C++개념편>/코딩 1막 <C++응용편>
728x90
1. < 0 ~ 100까지의 난수 10번 출력 >
#include <iostream>
#include <string>
#include <stdlib.h>
#include <time.h>
using namespace std;
// 0 ~ 100 중 난수 10번 출력
void main()
{
srand(time(NULL));
for (int i = 0; i < 11; i++)
{
cout << i << "번째 난수 : " << rand() % 100 << endl;
}
}
2. < 가위바위보 게임 >
#include <iostream>
#include <stdlib.h> //srand , rand
#include <time.h> //time
using namespace std;
void main()
{
srand(time(NULL));
int input;
int random;
while (true)
{
cout << "가위 바위 보 입력받으세요.(0가위,1바위,2보) : ";
cin >> input;
cout << "컴퓨터가 냅니다. : ";
random = rand() % 3;
cout << random << endl;
int week = input + 1;
if (week > 2)
{
week = 0;
}
if (random == week)
{
cout << "졌음" << endl;
}
else if (random == input)
{
cout << "비겼음" << endl;
}
else
{
cout << "이겼음" << endl;
}
}
}
728x90
'코딩 1막 <C++개념편> > 코딩 1막 <C++응용편>' 카테고리의 다른 글
[C++] 내가 만든 TextRPG 게임 (0) | 2022.06.03 |
---|---|
[C++] 숫자야구 게임 (0) | 2022.06.03 |
[C++] 덧셈연산, 몬스터생성, 사칙연산계산기만들기 (0) | 2022.06.02 |
[C++] 멤버함수응용 : monster 사냥 (0) | 2022.06.02 |
[C++] 외부함수들을 멤버함수로 변환하고 비교해보기(구조체) (0) | 2022.06.02 |