Senin, Maret 28

Source Code C++ Data Buku

Program c++ ini memiliki fungsi menambah data,hapus,edit dan tampil. Bagi yang menbutuhkan silahkan di download, tetapi souce kode ini jauh dari kesempurnaan, mohon untuk diedit ulang,tks




#include<stdio.h>


#include<conio.h>
#include<iostream.h>
#include<string.h>
typedef struct buku
{
char nama[20];
char no[20];
char jen[20];
char asal[20];
char jum[20];
char peng[20];
int id;
}buku;
int main()
{
float id;
FILE *fp,*ft;
char another, choice;
buku stu;
long int recsize;
fp=fopen("master.DAT","rb+");
if(fp==NULL)
{
fp=fopen("master.DAT","wb+");
if(fp==NULL)
{
printf("File gagal diakses");
}
}
recsize=sizeof(stu);
while(!(choice=='5'))
{
printf("\n======================");
printf("\nDAFTAR MENU PILIHAN ");
printf("\n=====================");
printf("\n1.TAMBAH DATA BUKU ");
printf("\n2.HAPUS DATA BUKU ");
printf("\n3.EDIT DATA BUKU ");
printf("\n4.TAMPIL DATA BUKU ");
printf("\n5.KELUAR ");
printf("\n=====================");
printf("\nPILIH SALAH SATU :");

fflush(stdin);
scanf("%c",&choice);
printf("\n===================");
switch(choice)
{
case'1':
fseek(fp,0,SEEK_END);
another='Y';
while(another=='Y'||another=='y')
{
clrscr();
printf("\n===================================");
printf("\nDATA BUKU PERPUSTAKAAN ");
printf("\n===================================");
printf("\n NAMA BUKU : ");scanf("%s",&stu.nama);
printf("\n NOMOR BUKU : ");scanf("%d",&stu.no);
printf("\n JENIS BUKU : ");scanf("%s",&stu.jen);
printf("\n ASAL BUKU : ");scanf("%s",&stu.asal);
printf("\n JUMLAH BUKU : ");scanf("%s",&stu.jum);
printf("\n PENGARANG : ");scanf("%d",&stu.peng);
fwrite(&stu,recsize,1,fp);
printf("\n===================================");
printf("\nMAU TAMBAH DATA LAGI[Y/T]? ");
fflush(stdin);
another=getchar();
}break;
case'2':
another='Y';
while(another=='Y'||another=='y')
{
clrscr();
printf("\n===================================");
printf("\nDATA BUKU PERPUSTAKAAN ");
printf("\n===================================");
printf("\n NAMA BUKU : ");scanf("%s",&stu.nama);
printf("\n NOMOR BUKU : ");scanf("%d",&stu.no);
printf("\n JENIS BUKU : ");scanf("%s",&stu.jen);
printf("\n ASAL BUKU : ");scanf("%s",&stu.asal);
printf("\n JUMLAH BUKU : ");scanf("%s",&stu.jum);
printf("\n PENGARANG : ");scanf("%d",&stu.peng);
printf("\n===========================");
ft=fopen("TEMP.DAT","wb");
rewind(fp);
while(fread(&stu,recsize,1,fp)==1)
{
if(stu.id!=0)
fwrite(&stu,recsize,1,ft);
}
fclose(fp);
fclose(ft);
remove("master.DAT");
rename("TEMP.DAT","master.DAT");
fp=fopen("master.DAT","wb+");
printf("\nMAU HAPUS DATA LAGI[Y/T]?");
fflush(stdin);
another=getchar();
}break;
case'3':
another='Y';
while(another=='Y'||another=='y')
{
clrscr();
printf("\n");
printf("\n===================================");
printf("\nDATA BUKU PERPUSTAKAAN ");
printf("\n===================================");
printf("\n NAMA BUKU : ");scanf("%s",&stu.nama);
printf("\n NOMOR BUKU : ");scanf("%d",&stu.no);
printf("\n JENIS BUKU : ");scanf("%s",&stu.jen);
printf("\n ASAL BUKU : ");scanf("%s",&stu.asal);
printf("\n JUMLAH BUKU : ");scanf("%s",&stu.jum);
printf("\n PENGARANG : ");scanf("%d",&stu.peng);
printf("\n===============================");
printf("\nMAU EDIT DATA LAGI[Y/T]?");
fflush(stdin);
another=getchar();
}break;
case'4':
rewind(fp);
clrscr();
printf("\n=====================================");
printf("\nDAFTAR DATA BUKU ");
printf("\n=====================================");
while(fread(&stu,recsize,1,fp)==1)
{
cout<<"\nNAMA BUKU : "<<stu.nama;
cout<<"\nNOMOR : "<<stu.no;
cout<<"\nJENIS : "<<stu.jen;
cout<<"\nASAL : "<<stu.asal;
cout<<"\nJUMLAH : "<<stu.jum;
cout<<"\nPENGARANG : "<<stu.peng;
printf("\n=====================================");
}break;
case'5':
{
clrscr();
}
break;
}//switch(choice)
}//while(!(choice=='5'))
}
Previous Post
Next Post

0 komentar: