This commit is contained in:
Everton Constantino
2021-05-19 17:29:42 +00:00
parent 6533187280
commit 09f3e95447
3 changed files with 114 additions and 37 deletions

View File

@@ -28,9 +28,14 @@ int main(int argc, char* argv[])
for(auto i = 0; i < 2; i++)
C = A*B;
#ifdef __DEBUG_SHOW_INPUTS__
std::cout << A << std::endl;
std::cout << B << std::endl;
#endif
#ifdef __DEBUG_SHOW_RESULT__
std::cout << C << std::endl;
#endif
std::cout << std::endl;
@@ -50,8 +55,9 @@ int main(int argc, char* argv[])
}
}
}
#ifdef __DEBUG_SHOW_RESULT__
std::cout << D << std::endl;
#endif
#else
if(argc < 5)
{