Program C++ Input Detail Buku Menggunakan Struct


Penggunaan Struct dan Fungsi Untuk Program Input Buku Perpustakaan

Source Code:

#include <iostream.h>


#include <conio.h>


#include <stdio.h>




struct Buku

{

char kode[10];


char judul[50];


char author[20];


char penerbit[50];


int jmlhal;

};


//membuat variabel struk


Buku myBook;


void input()

{

// mengakses elemen struct


cout << "masukan kode buku : ";


gets(myBook.kode);


cout << "masukan judul buku : ";


gets(myBook.judul);


cout << "masukan pengarang buku : ";


gets(myBook.author);


cout << "masukan penerbit buku : ";


gets(myBook.penerbit);


cout << "masukan jumlah halaman buku : ";


cin >> myBook.jmlhal;


// silakan lengkapi untuk inputan


// pengarang, penerbit, jml Hal


}


void output()

{

cout << "\nKode : " << myBook.kode;


cout << "\nJudul : " << myBook.judul;


cout << "\nPengarang : " << myBook.author;


cout << "\nPenerbit : " << myBook.penerbit;


cout << "\nJumlah Hal. : " << myBook.jmlhal;


// silakan lengkapi untuk output


// pengarang, penerbit, jmlHal


}


void main()

{

input();

clrscr();

getch();

output();

}


source = www.gatewan.com

Subscribe to receive free email updates:

0 Response to "Program C++ Input Detail Buku Menggunakan Struct "

Posting Komentar