jeudi 11 octobre 2018

I want to solve this query with c program

Can someone guide me how to put this properly in an if-else statement. Consider the following if statement, where doesSignificantWork, makesBreakthrough, and nobelPrizeCandidate are all boolean variables:

if (doesSignificantWork) {
    if (makesBreakthrough)
        nobelPrizeCandidate = true;
    else
        nobelPrizeCandidate = false;
}
else if (!doesSignificantWork)
    nobelPrizeCandidate = false;

First, write a simpler if statement that is equivalent to this one. Then write a single assignment statement that does the same thing.

Aucun commentaire:

Enregistrer un commentaire