Sabtu, 16 Desember 2017

PROGRAM MENGINPUT DATA BUKU DENGAN STRUCT

Berikut adalah program untuk penginputan buku dengan struct di Dev C++

Source code:

#include <iostream>
#include <conio.h>
#include <stdio.h>
#include<stdlib.h>
using namespace std;

struct Buku
{
 char kode[10];
   char judul[50];
   char author[20];
   char penerbit[50];
   int jmlhal;
};

//membuat variabel struk
Buku myBook;

int 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
}

int 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

}


int main()
{
input();
output();
getch();
}

Output:


Tidak ada komentar:

Posting Komentar