Блог пользователя advitiyabrijesh

Автор advitiyabrijesh, история, 8 лет назад, По-английски

I was doing this brute force problem, when I submitted my Code in GNU C++14 it gives WA whereas same code gets AC in GNU C++ ?

  • Проголосовать: нравится
  • -3
  • Проголосовать: не нравится

»
8 лет назад, # |
  Проголосовать: нравится +1 Проголосовать: не нравится

You have no return statement at the end of prt function. The result may vary depending on how the compiler handles this. By the way, using both printf and cout may result in WA as well (the order will swap e.g.), but it's not the case here.