// For20.cpp (c) Kari Laitinen // http://www.naturalprogramming.com/ // 1997-??-?? File created. // 2013-11-06 Last modification. #include using namespace std ; int main() { int number_to_print ; cout << "\n Numbers from 0 to 20 are the following:\n\n " ; for ( number_to_print = 0 ; number_to_print <= 20 ; number_to_print ++ ) { cout << " " << number_to_print ; } }