#include <iostream>
#include <time.h>
using namespace std;
void main()
{
srand(unsigned(time(NULL)));
int iSelect = 0, iCom = 0, iWin = 0, iLose = 0, iDraw = 0, iRound = 3;
int iRes = 0;
while (0 < iRound)
{
system("cls");
cout << "1.가위 2.바위 3.보 4.종료" << endl;
cout << "=========================================" << endl;
cout << "입력: ";
cin >> iSelect;
if (4 == iSelect)
break;
if(1 > iSelect || 4 < iSelect)
continue;
iCom = rand() % 3 + 1;
iRes = iSelect - iCom;
if (1 == iSelect)
cout << "사용자: 가위" << endl;
else if (2 == iSelect)
cout << "사용자: 바위" << endl;
else
cout << "사용자: 보" << endl;
if (1 == iCom)
cout << "컴퓨터: 가위" << endl;
else if (2 == iCom)
cout << "컴퓨터: 바위" << endl;
else
cout << "컴퓨터: 보" << endl;
if (0 == iRes)
{
cout << "무승부!" << endl;
++iDraw;
}
else if (-2 == iRes || 1 == iRes)
{
cout << "승리!" << endl;
++iWin;
}
else
{
cout << "패배!" << endl;
++iLose;
}
system("pause");
//if (1 == iSelect)
//{
// cout << "사용자: 가위" << endl;
// if (1 == iCom)
// {
// cout << "컴퓨터: 가위" << endl;
// cout << "무승부!" << endl;
// ++iDraw;
// }
// else if (2 == iCom)
// {
// cout << "컴퓨터: 바위" << endl;
// cout << "패배!" << endl;
// ++iLose;
// }
// else
// {
// cout << "컴퓨터: 보" << endl;
// cout << "승리!" << endl;
// ++iWin;
// }
//}
//else if (1 == iSelect)
//{
// cout << "사용자: 가위" << endl;
// if (1 == iCom)
// {
// cout << "컴퓨터: 가위" << endl;
// cout << "무승부!" << endl;
// ++iDraw;
// }
// else if (2 == iCom)
// {
// cout << "컴퓨터: 바위" << endl;
// cout << "패배!" << endl;
// ++iLose;
// }
// else
// {
// cout << "컴퓨터: 보" << endl;
// cout << "승리!" << endl;
// ++iWin;
// }
//}
--iRound;
}
system("cls");
cout << "승: " << iWin << ", 패: " << iLose << ", 무: " << iDraw << endl;
}
C++ for이용해서 별찍기 (0) | 2020.10.07 |
---|---|
C++ for, for문 이용하여 구구단 출력 (0) | 2020.10.07 |
C++ 자판기 프로그램 (0) | 2020.10.07 |
C++ while, do while, 난수, 구구단 출력하기 (0) | 2020.10.07 |
C++ 성적관리 프로그램 2 (0) | 2020.10.07 |