blob: ad1e3a2c25b776ba28f3e141b6271720e65b24b2 (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
// Name: Connor McDowell
// Date: 1/22/2024
// Class: CST116
// Assignment: exercise 5
#include <iostream>
#include "helper.h"
int main()
{
return 0;
}
int math()
{
return 0;
}
int math(int square = 2)
{
return square * square;
}
int math(int a, int b)
{
return a + b;
}
int math(int A, int B, int C, int x)
{
return A * x * x - B * x + C;
}
|