Program Stat Game

Apr 15, 2009 1 Comment by

Program StatGame oleh Yogi Priyo Prayogo

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
program StatGame;
uses Wincrt;
 
type Game=record
    Judul : string[15];
    Genre : string[10];
    Versi : string[10];
    Rating : string[10];
    Vendor : string[20];
    Harga : integer;
end;
 
var
    x : Game;
    Jwbn : char;
 
begin
  repeat
     writeln('Entry data game');
     writeln;
     writeln;
     write('Judul Game : '); readln(x.Judul);
     write('Genre Game : '); readln(x.Genre);
     write('Versi Game : '); readln(x.Versi);
     write('Rating Game : '); readln(x.Rating);
     write('Vendor : '); readln(x.Vendor);
     write('Harga : '); readln(x.Harga);
     writeln;
     writeln('---------------------------------------');
     writeln('Review Entry:');
     writeln('Judul Game : ', x.Judul);
     writeln('Genre Gamme : ', x.Genre);
     writeln('Versi Game : ', x.Versi);
     writeln('Rating Game : ', x.Rating);
     writeln('Vendor : ', x.Vendor);
     writeln('Harga : ', x.Harga);
     writeln;
     writeln('---------------------------------------');
     writeln;
     writeln('Apakah anda ingin mengulang entry data ? (y/t)'); readln(Jwbn);
  until (Jwbn='t');
  writeln;
  writeln;
  writeln('Terima Kasih atas kerjasamanya...');
end.

Yogi Priyo Prayogo
yogipriyo@ymail.com

Kata Kunci

contoh program pascal game, game pascal, program game pascal, cara membuat game menggunakan program pascal, cara membuat game dengan turbo pascal, cara membuat game dengan pascal, game program pascal, membuat game dengan pascal, program game pada pascal, program game dengan pascal.

Related posts:

  1. Intan Record
  2. Dani Record
  3. Program Counter Digital
  4. Program Data Mahasiswa
  5. Program Data Pegawai
  6. Hendra Array & Record
  7. Perulangan dengan Repeat Until
  8. Erika Record
  9. Aljan Array dan Record
  10. Contoh Program Record
Pascal

About the author

Tulisan kiriman sahabat

One Response to “Program Stat Game”

  1. agung says:

    gimana neh mas cara menggunakannya

    mohon bimbingannya

Leave a Reply