C语言实现一个简单的点歌系统

创建一个简单的点歌系统可以用C语言实现,这里提供一个基本的框架。这个系统可以包括歌曲列表、用户选择歌曲的功能以及播放歌曲的功能。以下是一个示例代码:

c 复制代码
#include <stdio.h>
#include <string.h>

#define MAX_SONGS 100
#define MAX_LENGTH 100

typedef struct {
    char name[MAX_LENGTH];
    char artist[MAX_LENGTH];
} Song;

typedef struct {
    Song songs[MAX_SONGS];
    int count;
} Playlist;

// 函数声明
void addSong(Playlist *playlist, const char *name, const char *artist);
void listSongs(const Playlist *playlist);
int chooseSong(const Playlist *playlist);

int main() {
    Playlist playlist = { .count = 0 };
    
    // 添加一些示例歌曲
    addSong(&playlist, "Yesterday", "The Beatles");
    addSong(&playlist, "Bohemian Rhapsody", "Queen");
    addSong(&playlist, "Hotel California", "Eagles");

    int choice;
    do {
        listSongs(&playlist);
        printf("请输入您想要听的歌曲编号(输入-1退出): ");
        scanf("%d", &choice);
        if (choice != -1) {
            playSong(&playlist, choice);
        }
    } while (choice != -1);

    return 0;
}

void addSong(Playlist *playlist, const char *name, const char *artist) {
    if (playlist->count < MAX_SONGS) {
        strcpy(playlist->songs[playlist->count].name, name);
        strcpy(playlist->songs[playlist->count].artist, artist);
        playlist->count++;
    } else {
        printf("播放列表已满。\n");
    }
}

void listSongs(const Playlist *playlist) {
    printf("播放列表:\n");
    for (int i = 0; i < playlist->count; i++) {
        printf("%d. %s - %s\n", i + 1, playlist->songs[i].name, playlist->songs[i].artist);
    }
}

int chooseSong(const Playlist *playlist) {
    int choice;
    printf("请选择歌曲编号: ");
    scanf("%d", &choice);
    return choice - 1;
}

void playSong(Playlist *playlist, int index) {
    if (index >= 0 && index < playlist->count) {
        printf("正在播放: %s - %s\n", playlist->songs[index].name, playlist->songs[index].artist);
    } else {
        printf("无效的选择。\n");
    }
}

这个程序定义了一个Playlist结构体来存储歌曲列表,并定义了Song结构体来保存每首歌的名字和艺术家名字。addSong函数用于添加新歌到播放列表,listSongs用于列出所有歌曲,chooseSong让用户选择歌曲,而playSong则根据用户的选择"播放"歌曲(在这里只是输出歌曲的信息)。

请注意,这只是一个非常基础的实现,实际应用中还需要考虑错误处理、输入验证、更复杂的用户界面等。此外,为了使程序更加完整,还可以添加删除歌曲、修改歌曲信息等功能。如果要保存歌曲信息,可以考虑使用文件操作来读写数据。

相关推荐
郭涤生1 小时前
不同主机之间网络通信-以太网连接复习
开发语言·rk3588
山居秋暝LS1 小时前
【无标题】RTX00安装paddle OCR,win11不能装最新的,也不能用GPU
开发语言·r语言
卢锡荣1 小时前
单芯通吃,盲插标杆 —— 乐得瑞 LDR6020,Type‑C 全场景互联 “智慧芯”
c语言·开发语言·计算机外设
Xin_ye100861 小时前
C# 零基础到精通教程 - 第七章:面向对象编程(入门)——类与对象
开发语言·c#
AI科技星2 小时前
《数学公理体系·第三部·数术几何》(2026 年版)
c语言·开发语言·线性代数·算法·矩阵·量子计算·agi
审判长烧鸡2 小时前
【Go工具】go-playground是什么组织?官方的?
开发语言·安全·go
kkeeper~2 小时前
0基础C语言积跬步之字符函数与字符串函数(上)
c语言·开发语言
hhb_6183 小时前
Swift核心技术难点与实战案例解析
开发语言·ios·swift
一楼的猫3 小时前
从工具链视角对比:番茄作家助手 vs 第三方写作辅助方案
java·服务器·开发语言·前端·学习·chatgpt·ai写作
程序leo源3 小时前
Qt窗口详解
开发语言·数据库·c++·qt·青少年编程·c#