Факториал #include "stdafx.h" unsigned long factorial (unsigned long); int _tmain(int argc, _TCHAR* argv[]) { for (int counter = 0; counter <=10; counter++) { cout << setw (2) << counter << "! = " << factorial(counter) << endl; } system("PAUSE"); return 0; } unsigne...