From 7b792e5fee1caf689727513934def1d96150cc8c Mon Sep 17 00:00:00 2001 From: valya1 Date: Mon, 2 May 2016 23:57:23 +0500 Subject: [PATCH] =?UTF-8?q?=D0=A0=D0=B5=D0=B0=D0=BB=D0=B8=D0=B7=D0=BE?= =?UTF-8?q?=D0=B2=D0=B0=D0=BD=D0=BE=20=D0=BF=D0=BE=D0=BB=D0=B5,=20=D1=84?= =?UTF-8?q?=D0=B8=D1=88=D0=BA=D0=B8,=20=D1=85=D0=BE=D0=B4=D1=8B,=20=D0=BE?= =?UTF-8?q?=D0=B1=D1=80=D0=B0=D0=B1=D0=BE=D1=82=D0=BA=D0=B0=20=D0=BF=D1=80?= =?UTF-8?q?=D0=B0=D0=B2=D0=B8=D0=BB=D1=8C=D0=BD=D0=BE=D1=81=D1=82=D0=B8=20?= =?UTF-8?q?=D1=85=D0=BE=D0=B4=D0=B0.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Backgammon/Backgammon.cpp | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/Backgammon/Backgammon.cpp b/Backgammon/Backgammon.cpp index 9adda60..8d2804c 100644 --- a/Backgammon/Backgammon.cpp +++ b/Backgammon/Backgammon.cpp @@ -23,10 +23,10 @@ void init() void show_field() { - int pos = 11; // генерация с 11 ячейки + int pos = 11; // ��������� � 11 ������ cout << " 11 10 9 8 7 6 5 4 3 2 1 0" << endl; cout << "---------------------------------------------------------------" << endl; - for (int i = 0; i < 15; i++) // первые 15 строк + for (int i = 0; i < 15; i++) // ������ 15 ����� { pos = 11; cout << "| "; @@ -43,7 +43,7 @@ void show_field() } cout << "|" << endl; } - for (int i = 15; i > 0; i--) // последние 15 строк + for (int i = 15; i > 0; i--) // ��������� 15 ����� { pos = 12; cout << "| "; @@ -73,39 +73,39 @@ void throw_dice() srand(time(0)); dice1 = rand() % 6 + 1; dice2 = rand() % 6 + 1; - cout << " На первом кубике выпало: " << dice1 << endl; - cout << " На втором кубике выпало: " << dice2 << endl; + cout << " �� ������ ������ ������: " << dice1 << endl; + cout << " �� ������ ������ ������: " << dice2 << endl; } void turn(int player) { vecint dices; int pos, points; - bool flag = 0; // признак того, что ход верен + bool flag = 0; // ������� ����, ��� ��� ����� throw_dice(); dices.push_back(dice1); dices.push_back(dice2); - if (dice1 == dice2) // дубль + if (dice1 == dice2) // ����� { - cout << "Вам выпал дубль!!!" << endl << endl;; + cout << "��� ����� �����!!!" << endl << endl;; dices.push_back(dice1); dices.push_back(dice2); } while (!dices.empty()) { - cout << "Введите номер ячейки, откуда переставлять: "; + cout << "������� ����� ������, ������ ������������: "; cin >> pos; while (chip[pos] != p[player - 1]) { - cout << "Хватит ходить чужими фишками!" << endl; + cout << "������ ������ ������ �������!" << endl; cin >> pos; } - cout << "Количество очков: "; + cout << "���������� �����: "; cin >> points; for (int i = 0; i < dices.size(); i++) if (points == dices[i]) { - dices.erase(dices.begin() + i); // удаляем кубик из массива кубиков + dices.erase(dices.begin() + i); // ������� ����� �� ������� ������� flag = true; break; } @@ -115,11 +115,11 @@ void turn(int player) amount[pos]--; amount[pos + points]++; - system("cls"); + system("cls"); show_field(); if (!dices.empty()) - cout << "У вас остались следующие ходы: " << endl; + cout << "� ��� �������� ��������� ����: " << endl; for (int i = 0; i < dices.size(); i++) cout << dices[i] << " "; cout << endl; @@ -138,4 +138,4 @@ int main() turn(player); system("pause"); return 0; -} +} \ No newline at end of file