C++ Basic: Exercise-69 with Solution For n = 10, write a C++ program that reads the integer n and prints its factorial. Visual Presentation: Sample Solution: C++ Code : #include<iostream>// Including input-output stream header fileusing namespace std;// Using the standard namespace// Funct...