最终版C语言课设----音乐资源管理系统

#include 
#include 
#include
#include 
#include
#define I 20
#define R 340
#define N 500

struct song                      
{    
	char name[20];
	char author[20];
	char singer[20];
	char data[20];
}so[N];                        //定义结构体

void menu(); 
void input(int i);
void save(int n);
void enter();
void browse();
void delet();
void search();
void back();                    //声明调用函数   
void showChord();
void showSong1();
void showSong2();
void showSong3();
void getChord();
void input(int i)               
{
	printf("歌名:");
	scanf("%s",so[i].name);
	printf("作者:");
	scanf("%s",so[i].author);
	printf("演唱者:");
	scanf("%s",so[i].singer);
	printf("发行日期:");
	scanf("%s",so[i].data);
}

void save(int n)                
{
	FILE*fp;
	int i;

	fp=fopen("song.txt","w");
	if(fp==NULL)
	{
		printf("ERROR:can not open this file \n");
		return;
	}
    for(i=0;i

你可能感兴趣的:(算法学习)