Bjarne Stroustrup “Programming Principles and Practice Using C++”
Chapter 9 Exercise 1
Using std_lib_facilities.h by Bjarne Stroustrup.
[code language=”cpp”]
// Philipp Siedler
// Bjarne Stroustrup’s PPP
// Chapter 9 Exercise 1
//Operations of a Toaster
/*
///Data:
Energie (Plugged in/out)
Heat (On/Off)
Time Range
Button (pressed down/up)
///Operation:
if(Plugged in){
while (Button pressed down && Time > 0){
Heat On;
Time–;
}
mechanical pop out toast;
}
*/
[/code]