init
This commit is contained in:
5
c/bungus.c
Normal file
5
c/bungus.c
Normal file
@@ -0,0 +1,5 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int main() {
|
||||
printf("boner\n");
|
||||
}
|
||||
38
c/playlist.c
Normal file
38
c/playlist.c
Normal file
@@ -0,0 +1,38 @@
|
||||
#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");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user