Shohibul Jalal

Shohibul Jalal

  • NA
  • 12
  • 1.7k

Just a Simple logic with if statement

Jul 30 2016 1:23 PM
I have small Program , here it is :
 
int a = 70;
int b = 50;
if (a > 60)
{
    // If the value of a is more than 60 , then a will be subtracted by 60 and add 1 to b.
}

Answers (4)