Решено BB вставка "код" и её косоглазие

Статус
В этой теме нельзя размещать новые ответы.
You like kissing boys, don't you?
Участник
Статус
Оффлайн
Регистрация
3 Апр 2019
Сообщения
828
Реакции[?]
257
Поинты[?]
27K
Строки нихуя не совподают, это первое
1679847893814.png

И второе:
1679847954676.png




И фикс:
1679848211153.png
До:
1679848249411.png
 
Последнее редактирование:
Администратор
Администратор
Статус
Оффлайн
Регистрация
18 Авг 2017
Сообщения
2,332
Реакции[?]
1,574
Поинты[?]
72K
Исправили, спасибо.

C++:
#include <iostream>
using namespace std;
  
void Store(){
  
     cout << "The Item store is not finished yet\n" << endl;
  
     int Mainmenu();
     Mainmenu();
  
     }
  
void Character(){
  
     int PlayerHp, PlayerStr, PlayerMana;
  
     cout << "Your character has:\n\n";
            
     cout << PlayerHp << " Health" << endl;
     cout << PlayerStr << " Strength" << endl;
     cout << PlayerMana << " Mana" << endl;
  
     cout << endl;
  
     int Mainmenu();
     Mainmenu();
     }
  
void Inventory(){
  
     cout << "Your inventory contains:\n" << endl;
  
     int Mainmenu();
     Mainmenu();

     }
  
void Wilderness(){
  
     cout << "You search the Jungle and find:\n" << endl;
  
     string Creatures[10];
  
     Creatures[0] = "1";
     Creatures[1] = "2";
     Creatures[2] = "3";
     Creatures[3] = "4";
  
     cout << Creatures << " Is really dangerous " << endl;
  
     int Mainmenu();
     Mainmenu();
     }

void Mainmenu(){
  
     string choice;
  
     cout << "1: Attack creature" << endl;
     cout << "2: Buy equipment" << endl;
     cout << "3: Inventory" << endl;
     cout << "4: Stats" << endl;
        
          // invalid option returns to this
          InvalidOption:
                    
     cin >> choice;
     if (choice == "1"){
                Wilderness ();
                }
     else if (choice == "2"){
                     Store();
                     }
     else if (choice == "3"){
                     Inventory();
                     }
     else if (choice == "4"){
                     Character();
                     }
     else{
          cout << "You have not chosen a valid option" << endl;
          goto InvalidOption;
     }
                  

  
     }

int main()
{
    int PlayerHp = 100, PlayerStr = 20, PlayerMana = 50;
    Mainmenu ();
}
 
Последнее редактирование:
Статус
В этой теме нельзя размещать новые ответы.
Сверху Снизу