• Помогите пожалуйста создать матрицу в C++ и сравнить 2 выбранные строки.

Ответы 4

  • почему то выдает ошибку на 11 и 16 строке
  • Не поподробнее об ошибках
    • Автор:

      adrien
    • 5 лет назад
    • 0
  • error: '_TCHAR' has not been declared
    • Автор:

      ajax
    • 5 лет назад
    • 0
  • поиск одинаковых строк в матрице(c++)

    #include <iostream>

    #include <ctime>

    #include <iomanip>

    #include <vector>

    using namespace std;

    typedef vector< vector<int> > T;

    ostream &operator<<(ostream &output,const T &mass)

    {

        for(size_t i = 0;i<mass.size();++i){

           for(size_t j = 0;j<mass.size();++j)

                  output<<setw(5)<<mass[j];

         output<<"";

       }

        return output;

    }

    int _tmain(int argc, _TCHAR* argv[])

    {

       srand((unsigned)time(0));

       unsigned int row,col;

       do{

         cout<<"Enter rows > 0"<<endl;

         cin>>row;

       }while(row <= 0);

       do{

         cout<<"Enter col > 0"<<endl;

         cin>>col;

       }while(col <= 0);

       T mass(row, vector<int>(col));

       for(size_t i = 0;i < row;++i){

         for(size_t j = 0;j < col;++j)

                     mass[j] = rand()%10;

       }

       cout<<mass;

       return 0;

    }

  • Добавить свой ответ

Еще вопросы

Войти через Google

или

Забыли пароль?

У меня нет аккаунта, я хочу Зарегистрироваться

How much to ban the user?
1 hour 1 day 100 years