12.05.2015 Views

type - David Vernon

type - David Vernon

type - David Vernon

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

conditional expression<br />

// example of the conditional expression<br />

z = 3 * (a < b ? a + 1 : b - 1) + 2;<br />

// alternative<br />

if (a < b)<br />

z = 3 * (a + 1) + 2;<br />

else<br />

z = 3 * (b - 1) + 2;<br />

Copyright © 2007 <strong>David</strong> <strong>Vernon</strong> (www.vernon.eu)

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!