C Programming Absolute Beginner's Guide (3rd Edition)

(Romina) #1
printf("What year were you born?\n");
scanf(" %d", &yearBorn);
// This if statement can do some data validation, making sure
// the year makes sense
// The statements will only execute if the year is after the
// current year
if (yearBorn > CURRENTYEAR)
{
printf("Really? You haven't been born yet?\n");
printf("Congratulations on time travel!\n");
}
else
{

age = CURRENTYEAR - yearBorn;
printf("\nSo this year you will turn %d on your birthday!\n",
age);
// The second if statment uses the modulus operator to test
// if the year of
// birth was a Leap Year. Again, only if it is will the code
// execute
if ((yearBorn % 4) == 0)
{
printf("\nYou were born in a Leap Year--cool!\n");
}
}
return 0;
}

This is largely the same program as before (with the exception that the user does not have the option
of entering a second date if the first one is deemed incorrect), but something else is worth noting. The
second if statement is embedded inside the code that executes during the else portion of the first
if statement. This is known as a nested statement, and it is something you will probably be doing as
your programs get more complicated. You can also test multiple conditions, but the switch
statement, covered in Chapter 17, “Making the case for the switch Statement,” helps you master
that statement.


Tip

Put semicolons only at the end of executable statements in the body of the if or the
else. Never put a semicolon after the if or the else; semicolons go only at the end
of complete statements.
Free download pdf