39 lines
716 B
C
39 lines
716 B
C
#include <stdio.h>
|
|
#include <stdbool.h>
|
|
|
|
int main() {
|
|
bool running = true;
|
|
while (running) {
|
|
|
|
// Print menu options
|
|
printf("Welcome to the text-based menu!\n");
|
|
printf("1. Option 1\n");
|
|
printf("2. Option 2\n");
|
|
printf("3. Option 3\n");
|
|
printf("4. Exit\n");
|
|
|
|
// Get user input
|
|
int option;
|
|
scanf("%d", &option);
|
|
|
|
// Handle user input
|
|
switch (option) {
|
|
case 1:
|
|
printf("You chose option 1!\n");
|
|
break;
|
|
case 2:
|
|
printf("You chose option 2!\n");
|
|
break;
|
|
case 3:
|
|
printf("You chose option 3!\n");
|
|
break;
|
|
case 4:
|
|
running = false;
|
|
printf("You chose to exit the menu.\n");
|
|
break;
|
|
default:
|
|
printf("Invalid input. Please try again.\n");
|
|
}
|
|
}
|
|
}
|