// CSCI 1300 -- Practice for the Week 5 Programming Quiz // Student Name: // Complete the program as directed in the comments. Test your work. // Show your work to your TA. Oh, yeah: and have fun! #include #include using namespace std; int main( ) { // Please declare any variables that you need here. // Choose meaningful names and put a comment with each // variable indicating its purpose. // 1. Write a bit of C++ code that asks the user to type // a positive integer n. The program then uses a loop // to compute the sum 1+2+3+4+...n. This sum is then // printed. // 2.