4
Answers

Just a Simple logic with if statement

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)