aboutsummaryrefslogtreecommitdiff
path: root/Austin's Project 2 split
blob: 48ab34ca83f9be8632b6e2221874b9c744787e56 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "Voids.h"
#include <iostream>

int main()
{
	int Number = 0;

	int Digit = 0;

	int Position = 0;

	GetData(Number);

	IsOddEven(Number);

	FindDigitAtPosition(Digit, Position, Number);
}