百万人感谢愿意帮助我的人。
第一,该法:
#include <iostream>
#include <string>
#include <fstream>
#include <vector>
using namespace std;
void Beolvas (vector<vector<int> > mat);
bool VanNemNull (const vector<vector<int> > &mat);
int main()
{
cout << "Van-e a mátrixnak olyan oszlopa, hogy a főátló alatt csak 0-át tartalmaz, és ha igen, akkor melyik az?
" <<endl;
char ch;
do{
// Adatbevitel
vector<vector<int> > mat;
Beolvas(mat);
//Kiértékelés
int i;
if (VanNemNull(&mat[i])) cout<<"szupiiiiii";
cout<< endl << "Futtassam újra? (I/N)";cin>>ch;
}while (ch!= n && ch!= N );
return 0;
}
void Beolvas(vector<vector<int> > mat)
{
ifstream fajl;
bool hiba;
string str;
do{
cout << "Fajl neve:";
cin >> str;
fajl.open(str.c_str());
if (hiba = fajl.fail())
{
cout << "Nincs ilyen nevű fájl" << endl;
fajl.clear();
}
}while (hiba);
int n;
fajl >> n;
if (n<1)
{
cout<<"Helytelen a mátrix mérete
Kérem ellenőrizze a forrásfájlt!
";
cout<<"E megnyomásával kilép"<<endl;
char ex;
do{
cin>>ex;
}while (ex!= e && ex!= E );exit(0);
}
mat.resize(n);
for(int i=0; i<n; ++i)
{
mat[i].resize(n);
for (int j=0; j<n; ++j)
{
fajl >> mat[i][j];
}
}
fajl.close();
cout<<"A mátrix a következöképpen néz ki:"<<"
";
cout<<"Elemszáma: "; cout<<n*n<<"
";
for (int i=0; i<n; ++i)
{
for (int j=0; j<n; ++j)
{
cout<<mat[i][j]<<" ";
}
cout<<"
";
}
}
/*void Vansor (const vector<vector<int> > mat)
{
//bool l = false;
}*/
bool VanNemNull (const vector<vector<int> > mat)
{
bool l = false;
int i=0;
cout<<(int)mat.size();
for (int j=i+1; !l && j<(int)mat.size(); ++j)
{
cout<<mat[j][i]<<"
";
if (l) cout<<"hej
";
l = (mat[j][i]!=0);
if (l= true) cout<<"22"; else cout<<"11";
}
return (l);
}
主要问题是最后一部分。 此外,我收到这些错误信息:
||In function `int main() :|
|23|error: invalid initialization of reference of type const std::vector<std::vector<int, std::allocator<int> >, std::allocator<std::vector<int, std::allocator<int> > > >& from expression of type std::vector<int, std::allocator<int> >* |
|9|error: in passing argument 1 of `bool VanNemNull(const std::vector<std::vector<int, std::allocator<int> >, std::allocator<std::vector<int, std::allocator<int> > > >&) |
||=== Build finished: 2 errors, 0 warnings ===|