aboutsummaryrefslogtreecommitdiff
path: root/Inclass-9/ReferenceExamples.cpp
blob: bd906269c71b9522cbef00f90002c607e44f7d30 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Program.cpp function code file.

#include <iostream>
#include "ReferenceExamples.h"

using std::cin;
using std::cout;
using std::endl;

void Swap(int& x, int& y)
{



}

void Standardize_101(int& n)
{
	

	// return n %= 101;
}

void Square(int& x)
{



}