4
Reply

Just a Simple logic with if statement

Shohibul Jalal

Shohibul Jalal

Jul 30 2016 1:23 PM
362
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)