Canvas of Bliss

#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;
}

이 글을 공유합시다

facebook twitter kakaoTalk kakaostory naver band