diff options
| author | Connor McDowell <[email protected]> | 2024-02-09 16:04:40 -0800 |
|---|---|---|
| committer | Connor McDowell <[email protected]> | 2024-02-09 16:04:40 -0800 |
| commit | 3cb4e3b20025fe6fad1bdb05030fbc51941dbbcf (patch) | |
| tree | 2dfbb6f40572dc56a4c9d29745b4f58cc8caa9a7 /Project1/Functions.cpp | |
| parent | re-organized existing functions and structs (diff) | |
| download | homework-4-connormcdowell275-3cb4e3b20025fe6fad1bdb05030fbc51941dbbcf.tar.xz homework-4-connormcdowell275-3cb4e3b20025fe6fad1bdb05030fbc51941dbbcf.zip | |
working on loops
Diffstat (limited to 'Project1/Functions.cpp')
| -rw-r--r-- | Project1/Functions.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Project1/Functions.cpp b/Project1/Functions.cpp index 868ac8f..f31aa9f 100644 --- a/Project1/Functions.cpp +++ b/Project1/Functions.cpp @@ -23,6 +23,11 @@ userDoB inputPersonal() cout << "\n Now please enter the year you were born as a number: "; cin >> user.month; - return user; } + +int Fishonacci() { + cout << "test" << endl; + + return 0; +} |