/**********************************************************/ //debugTest.cpp //Written by: R. A. Hillyard //Last Modified 09/24/2001 // //Simple for loop to demonstrate the use of the debugger /*********************************************************/ #include using namespace std; int main() { int n = 4; int sum = 0; for(int i = 1; i <= n; i++) { sum += i; } cout << "sum = " << sum << endl; return 0; }//end main /***********************************************************/