// main2a.cpp - This program is an adding machine for the C++ // game tutorial. #include // cin and cout are defined in this header void main() { double Input=0; // This will hold keyboard input double Total=0; // This will hold the total // Type a welcome message cout<<"Welcome to the C++ Game Tutorials Adding Machine" <>Input; // Take input Total = Total + Input; // Add total cout<