Going shopping , going to a party, graduating
Answer:
What are the two prongs that must be met to be considered a high-performance green building? (site 2)
edge 100%
// A single if statement
if (boolean expression)
Do statement;
// Or a single if with {}
if (boolean expression)
{
Do statement;
}
// A block if statement: { } required
if (boolean expression)
{
Do Statement1;
Do Statement2;
...
Do StatementN;
}
Note