cdexswzaq123's blog

By cdexswzaq123, 10 years ago, In Russian

Кто может помогите сократить код.

include

std::fstream i("input.txt"), o("output.txt",2); main(){ int n,m; i>>n>>m; if(n%2 || m%2)o<<1; else o<<2; }

Заранее спасибо.

  • Vote: I like it
  • -30
  • Vote: I do not like it

»
10 years ago, # |
Rev. 2   Vote: I like it 0 Vote: I do not like it

o << ((n % 2 || m % 2) ? 1 : 2);