

Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Instructions on how to use visual studio 2008 for coding c++ programs, including downloading the software, starting a new project, adding a file, compiling and running the code, and resubmitting an assignment. It also includes examples of c++ programs.
Typology: Study notes
1 / 3
This page cannot be seen from the preview
Don't miss anything!


What tool do you use for an essay paper numbers and formulas
For writing code we will use an Integrated Development Environment (IDE)
plain text editor compiler debugger syntax highlighting etc.
http://cs.usu.edu/htm/elms
free download to students currently in a CS class
Your account is your email address
For questions contact [email protected]
Not for commercial use
Free to all http://www.microsoft.com/express/download/#we bInstall Must also download service pack 1, and the SDK Possibly make some configuration changes
Visual Studio is available on many of the open access computer labs http://www.usu.edu/computerlabs/
Select File New Project Visual C++ Win 32 Win 32 Console Application Give the project a name Pick the location (this is important so you can find it later
Click OK
Select Application Settings
Make sure the console application button is selected
Check the empty project check box
Click Finish
(If you get this step wrong โ start over)
Select Project Add new item Visual C++ Code C++ file (.cpp) Give the file a name Do NOT change the location Click add
#include
int main(){ cout<<"Hello World"<<endl; return 0; }
Select Debug Start Without Debugging
Shortcut: Ctrl+F
Write a complete C++ program to produce the following kitchen order. Define and use variables for the following given values: Day Year Amount ordered of each item (amount only not name of item)