diff options
| author | Tyler Taormina <[email protected]> | 2021-11-23 16:56:30 -0800 |
|---|---|---|
| committer | Tyler Taormina <[email protected]> | 2021-11-23 16:56:30 -0800 |
| commit | 687d02affbc123302f7d20ddeb28276591411bc3 (patch) | |
| tree | 8a0afe2a78b5f3b46e011e17d2c81c3fd9a9aca1 /num1.cpp | |
| parent | 11.9 complete (diff) | |
| download | cst115-lab8-till-t-687d02affbc123302f7d20ddeb28276591411bc3.tar.xz cst115-lab8-till-t-687d02affbc123302f7d20ddeb28276591411bc3.zip | |
Debug exercise complete.
Diffstat (limited to 'num1.cpp')
| -rw-r--r-- | num1.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -11,6 +11,7 @@ void findMedian(float arr[], int); float GetValues (float values[]); #define MAX 20 + int main () { int num_values; @@ -46,6 +47,7 @@ float GetValues (float values[]) return num_values; } + void findMedian(float arr[], int num_val) { float x; |