diff --git a/src/Vect.cpp b/src/Vect.cpp index 930a92e..17c06d9 100644 --- a/src/Vect.cpp +++ b/src/Vect.cpp @@ -67,7 +67,7 @@ void Vect::Print() const { std::cout << "Espace vectoriel de dimension " << GetCardinal() << " de base :\n\n"; for (std::size_t i = 0; i < m_Data.GetRawCount(); i++) { for (std::size_t j = 0; j < m_Data.GetColumnCount(); j++) { - printf("[ %.3f ]\t", static_cast(m_Data.at(i, j))); + printf("[ %u ]\t", static_cast(m_Data.at(i, j))); } std::cout << "\n"; }