CMSC 160 -- Quiz 4

Quiz 4

  1. What is an accumulator?
  2. What is a loop variable?
  3. Write some code to multiply all of the integers from 1 through n.
    
#include <iostream>
using namespace std;

int main(){
	int n = 0;
	cin >> n;

	return 0;
}