// Name: Asahel Lopez // Date: 2/2/24 // Class: CST 116 // Assignment: Homework 4 #include using std::cout; using std::endl; using std::cin; void Print() { for (int i = 0; i <= 100; i++) { cout << i << " "; } } void InputPersonalInfo() { int i = 0; do { cout << i << "\n"; i++; } while (i < 5); } int fib(int n) { if (n <= 1) return n; return fib(n - 1) + fib(n - 2); } int main() { cout << "A. Print(100)" << endl; cout << "B. Input Personal Information" << endl; cout << "C. Print Fibonacci" << endl; cout << "D. Exit" << endl; char input = 'A'; switch (input) { case 'A': Print(); break; } InputPersonalInfo(); { int month; int day; int year; cout << "Enter the month you were born in" << endl; cin >> month; cout << "Enter the day you were born in" << endl; cin >> day; cout << "Enter the year you were born in" << endl; cin >> year; cout << "You were born in: " << month << " " << day << " " << year << endl; return 0; } int fib(int n);{ int n = 9; cout << n << fib(n); return 0; } return 0; }