Rating changes for last rounds are temporarily rolled back. They will be returned soon. ×

Martuza's blog

By Martuza, 11 years ago, In English

There is a saying that it takes 10,000 hours of doing something to master it. Twelve Tips to Master #Programming

Full text and comments »

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

By Martuza, 11 years ago, In English

Sometimes we use flag variables for indicating some operations. and we need to change the value of flag 0 to 1 or 1 to 0. we use this statements

bool flag = 1;
if(flag == 1) flag = 0;
else flag = 1;

But how I get same result not using these statements? Have any mathematical calculation for this ? Please anyone help me.

Full text and comments »

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