Tugas Proyek Matakuliah Dasar Pemrograman - Booking Lapangan Futsal C++ (Akses File)



 A. Keterangan

Studi Kasus : Booking Lapangan Futsal
Bahasa : C++
Tools : Dev C++
Syarat : I/O, Perulangan, Percabangan, Akses File

Tugas proyek ini adalah salah satu tugas dalam matakuliah Dasar Pemrograman pada semester 1, disini saya mengambil studi kasus mengenai Booking Lapangan Futsal dimana akan dibuat sistem nya dengan menggunakan bahasa pemrograman C++. Oke langsung saja akan saya bagikan source code nya.

B. Source Code


  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
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
#include <iostream>
#include <fstream>
#include <stdlib.h>
using namespace std;
class futsal{
	public:
	void about1();
	void kluar1();
	void viewjudul1();

};
void futsal::viewjudul1(){
	cout<<"|======================|"<<endl;
	cout<<"|~~~~ WELCOME GUYS ~~~~|"<<endl;
	cout<<"|========= TO =========|"<<endl;
	for(int i=1;i<5;i++){
		cout<<"|====|";
	}
	cout<<endl;
	cout<<"|~~~~~~~~ S ~~~~~~~~~~~|"<<endl;
	cout<<"|~~~~~~~~~~ I ~~~~~~~~~|"<<endl;
	cout<<"|~~ F U T S A L ~~~~~~~|"<<endl;
	cout<<"|~~~~~~~~~~~~~~ V ~~~~~|"<<endl;
	cout<<"|~~~~~~~~~~~~~~~~ E ~~~|"<<endl;
	cout<<"|~~~~~~~~~~~~~~~~~~ R ~|"<<endl;
	for(int i=1;i<5;i++){
		cout<<"|====|";
	}
	cout<<endl;
} 
void futsal::about1(){
	cout<<"Nama   : Silver Futsal"<<endl;
	cout<<"Alamat : Jln.Keindahan Duniawi No.11"<<endl;
	cout<<"No.HP  : 081234567890"<<endl;
	cout<<"No.Rek : 1122334455667788"<<endl;
	cout<<"Email  : silverfutsal@gmail.co.id"<<endl;
}
void futsal::kluar1(){
	cout<<"Terima Kasih Telah Menggunakan Aplikasi Kami"<<endl;
}
struct silver{
	string nama;
	string hp;
	string tgl;
	int jam;
	string mulai;
	int pilih;
};

void BL(silver bl){
	cout<<"Masukkan Nama Anda  : ";cin>>bl.nama;
	cout<<"Masukkan No.HP Anda : ";cin>>bl.hp;
	cout<<"Masukkan Tanggal Bermain (DD/MM/YYYY) : ";cin>>bl.tgl;
	cout<<"Bermain Dari Jam    : ";cin>>bl.mulai;
	int DP1=50000;
	int DP2=40000;
	int LN1=150000;
	int LN2=100000;
	string norek;
	int pilih1,pilih2,pilih3,pilih4,total;
	cout<<"Pilihan Lapangan\n[1] Lapangan Rumput Sintetis\t Rp.150.000/Jam\n[2] Lapangan Karpet\t\t Rp.100.000/Jam\n"<<endl;
	cout<<"Masukkan Pilihan : ";cin>>pilih1;
	switch(pilih1){
		case 1:
		cout<<"Pilihan Pembayaran\n[1] Via ATM\n[2] Via Tunai\n"<<endl;
		cout<<"Masukkan Pilihan : ";cin>>pilih2;
		if(pilih2==1){
			cout<<"Pilihan Tagihan Pembayaran\n[1] DP\t\t Rp.50.000\n[2] Lunas\t Rp.150.000\n";
			cout<<"Masukkan Pilihan : ";cin>>pilih3;
			if(pilih3==1){
				cout<<"Bermain Berapa Jam : ";cin>>bl.jam;
				total=DP1*bl.jam;
				cout<<"Total Tagihan Anda Rp."<<total<<endl;
				cout<<"Masukkan No.Rekening Anda : ";cin>>norek;
				cout<<"Tagihan Berhasil Dibuat"<<endl;
				ofstream op;
				op.open("Struk Tagihan.txt");
				op<<"================================="<<endl;
				op<<"|       TAGIHAN PEMBAYARAN      |"<<endl;
				op<<"================================="<<endl;
				op<<"Nama      : "<<bl.nama<<endl;
				op<<"No.HP     : "<<bl.hp<<endl;
				op<<"Tanggal   : "<<bl.tgl<<endl;
				op<<"Mulai Jam : "<<bl.mulai<<endl;
				op<<"Lapangan  : Lapangan Rumput Sintetis"<<endl;
				op<<"Bermain   : "<<bl.jam<<" Jam"<<endl;
				op<<"Bayar     : DP "<<endl;
				op<<"Harga     : Rp."<<total<<endl;
				op<<"No.Rek    : "<<norek<<endl;
				op<<"================================="<<endl;
				op<<"  Silahkan Membayar Melalui ATM  "<<endl;
				op<<"Dengan Transfer Ke Nomor Rekening"<<endl;
				op<<"          Dibawah Ini            "<<endl;
				op<<"        1122334455667788         "<<endl;
				op<<"================================="<<endl;
				
				ofstream os;
				os.open("Daftar Bookingan.txt",ios::app);
				os<<"================================="<<endl;
				os<<"|    DAFTAR BOOKING LAPANGAN    |"<<endl;
				os<<"================================="<<endl;
				os<<"Nama      : "<<bl.nama<<endl;
				os<<"No.HP     : "<<bl.hp<<endl;
				os<<"Tanggal   : "<<bl.tgl<<endl;
				os<<"Mulai Jam : "<<bl.mulai<<endl;
				os<<"Lapangan  : Lapangan Rumput Sintetis"<<endl;
				os<<"Bermain   : "<<bl.jam<<" Jam"<<endl;
				
				ofstream oo;
				oo.open("Struk Simpan.txt",ios::app);
				oo<<"================================="<<endl;
				oo<<"|     Data Booking Lapangan     |"<<endl;
				oo<<"================================="<<endl;
				oo<<"Nama      : "<<bl.nama<<endl;
				oo<<"No.HP     : "<<bl.hp<<endl;
				oo<<"Tanggal   : "<<bl.tgl<<endl;
				oo<<"Mulai Jam : "<<bl.mulai<<endl;
				oo<<"Lapangan  : Lapangan Rumput Sintetis"<<endl;
				oo<<"Bermain   : "<<bl.jam<<" Jam"<<endl;
				oo<<"Bayar     : DP "<<endl;
				oo<<"Harga     : Rp."<<total<<endl;
				oo<<"No.Rek    : "<<norek<<endl;
			}
			else if(pilih3==2){
				cout<<"Bermain Berapa Jam : ";cin>>bl.jam;
				total=LN1*bl.jam;
				cout<<"Total Tagihan Anda Rp."<<total<<endl;
				cout<<"Masukkan No.Rekening Anda : ";cin>>norek;
				cout<<"Tagihan Berhasil Dibuat"<<endl;
				ofstream op;
				op.open("Struk Tagihan.txt");
				op<<"================================="<<endl;
				op<<"|       TAGIHAN PEMBAYARAN      |"<<endl;
				op<<"================================="<<endl;
				op<<"Nama      : "<<bl.nama<<endl;
				op<<"No.HP     : "<<bl.hp<<endl;
				op<<"Tanggal   : "<<bl.tgl<<endl;
				op<<"Mulai Jam : "<<bl.mulai<<endl;
				op<<"Lapangan  : Lapangan Rumput Sintetis"<<endl;
				op<<"Bermain   : "<<bl.jam<<" Jam"<<endl;
				op<<"Bayar     : Lunas "<<endl;
				op<<"Harga     : Rp."<<total<<endl;
				op<<"No.Rek    : "<<norek<<endl;
				op<<"================================="<<endl;
				op<<"  Silahkan Membayar Melalui ATM  "<<endl;
				op<<"Dengan Transfer Ke Nomor Rekening"<<endl;
				op<<"          Dibawah Ini            "<<endl;
				op<<"        1122334455667788         "<<endl;
				op<<"================================="<<endl;
				
				ofstream os;
				os.open("Daftar Bookingan.txt",ios::app);
				os<<"================================="<<endl;
				os<<"|    DAFTAR BOOKING LAPANGAN    |"<<endl;
				os<<"================================="<<endl;
				os<<"Nama      : "<<bl.nama<<endl;
				os<<"No.HP     : "<<bl.hp<<endl;
				os<<"Tanggal   : "<<bl.tgl<<endl;
				os<<"Mulai Jam : "<<bl.mulai<<endl;
				os<<"Lapangan  : Lapangan Rumput Sintetis"<<endl;
				os<<"Bermain   : "<<bl.jam<<" Jam"<<endl;
				
				ofstream oo;
				oo.open("Struk Simpan.txt",ios::app);
				oo<<"================================="<<endl;
				oo<<"|     Data Booking Lapangan     |"<<endl;
				oo<<"================================="<<endl;
				oo<<"Nama      : "<<bl.nama<<endl;
				oo<<"No.HP     : "<<bl.hp<<endl;
				oo<<"Tanggal   : "<<bl.tgl<<endl;
				oo<<"Mulai Jam : "<<bl.mulai<<endl;
				oo<<"Lapangan  : Lapangan Rumput Sintetis"<<endl;
				oo<<"Bermain   : "<<bl.jam<<" Jam"<<endl;
				oo<<"Bayar     : DP "<<endl;
				oo<<"Harga     : Rp."<<total<<endl;
				oo<<"No.Rek    : "<<norek<<endl;
			}
		} else if(pilih2==2){
			cout<<"Pilihan Tagihan Pembayaran\n[1] DP\t\t Rp.50.000\n[2] Lunas\t Rp.150.000\n";
			cout<<"Masukkan Pilihan : ";cin>>pilih4;
			if(pilih4==1){
				cout<<"Bermain Berapa Jam : ";cin>>bl.jam;
				total=DP1*bl.jam;
				cout<<"Total Tagihan Anda Rp."<<total<<endl;
				cout<<"Silahkan Datang Ke Tempat Kami Untuk Melakukan Pembayaran"<<endl;
				cout<<"Tagihan Berhasil Dibuat"<<endl;
				ofstream op;
				op.open("Struk Tagihan.txt");
				op<<"================================="<<endl;
				op<<"|       TAGIHAN PEMBAYARAN      |"<<endl;
				op<<"================================="<<endl;
				op<<"Nama      : "<<bl.nama<<endl;
				op<<"No.HP     : "<<bl.hp<<endl;
				op<<"Tanggal   : "<<bl.tgl<<endl;
				op<<"Mulai Jam : "<<bl.mulai<<endl;
				op<<"Lapangan  : Lapangan Rumput Sintetis"<<endl;
				op<<"Bermain   : "<<bl.jam<<" Jam"<<endl;
				op<<"Bayar     : DP "<<endl;
				op<<"Harga     : Rp."<<total<<endl;
				op<<"================================="<<endl;
				op<<"  Silahkan Datang Ke Tempat Kami "<<endl;
				op<<"    Untuk Melakukan Pembayaran   "<<endl;
				op<<"     Alamat Kami Terletak Di     "<<endl;
				op<<"   Jln.Keindahan Duniawi No.11   "<<endl;
				op<<"================================="<<endl;
				
				ofstream os;
				os.open("Daftar Bookingan.txt",ios::app);
				os<<"================================="<<endl;
				os<<"|    DAFTAR BOOKING LAPANGAN    |"<<endl;
				os<<"================================="<<endl;
				os<<"Nama      : "<<bl.nama<<endl;
				os<<"No.HP     : "<<bl.hp<<endl;
				os<<"Tanggal   : "<<bl.tgl<<endl;
				os<<"Mulai Jam : "<<bl.mulai<<endl;
				os<<"Lapangan  : Lapangan Rumput Sintetis"<<endl;
				os<<"Bermain   : "<<bl.jam<<" Jam"<<endl;
				
				ofstream oo;
				oo.open("Struk Simpan.txt",ios::app);
				oo<<"================================="<<endl;
				oo<<"|     Data Booking Lapangan     |"<<endl;
				oo<<"================================="<<endl;
				oo<<"Nama      : "<<bl.nama<<endl;
				oo<<"No.HP     : "<<bl.hp<<endl;
				oo<<"Tanggal   : "<<bl.tgl<<endl;
				oo<<"Mulai Jam : "<<bl.mulai<<endl;
				oo<<"Lapangan  : Lapangan Rumput Sintetis"<<endl;
				oo<<"Bermain   : "<<bl.jam<<" Jam"<<endl;
				oo<<"Bayar     : DP "<<endl;
				oo<<"Harga     : Rp."<<total<<endl;
				oo<<"No.Rek    : "<<norek<<endl;
			} 
			else if(pilih4==2){
				cout<<"Bermain Berapa Jam : ";cin>>bl.jam;
				total=LN1*bl.jam;
				cout<<"Total Tagihan Anda Rp."<<total<<endl;
				cout<<"Silahkan Datang Ke Tempat Kami Untuk Melakukan Pembayaran"<<endl;
				cout<<"Tagihan Berhasil Dibuat"<<endl;
				ofstream op;
				op.open("Struk Tagihan.txt");
				op<<"================================="<<endl;
				op<<"|       TAGIHAN PEMBAYARAN      |"<<endl;
				op<<"================================="<<endl;
				op<<"Nama      : "<<bl.nama<<endl;
				op<<"No.HP     : "<<bl.hp<<endl;
				op<<"Tanggal   : "<<bl.tgl<<endl;
				op<<"Mulai Jam : "<<bl.mulai<<endl;
				op<<"Lapangan  : Lapangan Rumput Sintetis"<<endl;
				op<<"Bermain   : "<<bl.jam<<" Jam"<<endl;
				op<<"Bayar     : Lunas "<<endl;
				op<<"Harga     : Rp."<<total<<endl;
				op<<"================================="<<endl;
				op<<"  Silahkan Datang Ke Tempat Kami "<<endl;
				op<<"    Untuk Melakukan Pembayaran   "<<endl;
				op<<"     Alamat Kami Terletak Di     "<<endl;
				op<<"   Jln.Keindahan Duniawi No.11   "<<endl;
				op<<"================================="<<endl;
				
				ofstream os;
				os.open("Daftar Bookingan.txt",ios::app);
				os<<"================================="<<endl;
				os<<"|    DAFTAR BOOKING LAPANGAN    |"<<endl;
				os<<"================================="<<endl;
				os<<"Nama      : "<<bl.nama<<endl;
				os<<"No.HP     : "<<bl.hp<<endl;
				os<<"Tanggal   : "<<bl.tgl<<endl;
				os<<"Mulai Jam : "<<bl.mulai<<endl;
				os<<"Lapangan  : Lapangan Rumput Sintetis"<<endl;
				os<<"Bermain   : "<<bl.jam<<" Jam"<<endl;
				
				ofstream oo;
				oo.open("Struk Simpan.txt",ios::app);
				oo<<"================================="<<endl;
				oo<<"|     Data Booking Lapangan     |"<<endl;
				oo<<"================================="<<endl;
				oo<<"Nama      : "<<bl.nama<<endl;
				oo<<"No.HP     : "<<bl.hp<<endl;
				oo<<"Tanggal   : "<<bl.tgl<<endl;
				oo<<"Mulai Jam : "<<bl.mulai<<endl;
				oo<<"Lapangan  : Lapangan Rumput Sintetis"<<endl;
				oo<<"Bermain   : "<<bl.jam<<" Jam"<<endl;
				oo<<"Bayar     : DP "<<endl;
				oo<<"Harga     : Rp."<<total<<endl;
				oo<<"No.Rek    : "<<norek<<endl;
			}
		} 
		break;
		case 2:
		cout<<"Pilihan Pembayaran\n[1] Via ATM\n[2] Via Tunai\n"<<endl;
		cout<<"Masukkan Pilihan : ";cin>>pilih2;
		if(pilih2==1){
			cout<<"Pilihan Tagihan Pembayaran\n[1] DP\t\t Rp.40.000\n[2] Lunas\t Rp.100.000\n";
			cout<<"Masukkan Pilihan : ";cin>>pilih3;
			if(pilih3==1){
				cout<<"Bermain Berapa Jam : ";cin>>bl.jam;
				total=DP2*bl.jam;
				cout<<"Total Tagihan Anda Rp."<<total<<endl;
				cout<<"Masukkan No.Rekening Anda : ";cin>>norek;
				cout<<"Tagihan Berhasil Dibuat"<<endl;
				ofstream op;
				op.open("Struk Tagihan.txt");
				op<<"================================="<<endl;
				op<<"|       TAGIHAN PEMBAYARAN      |"<<endl;
				op<<"================================="<<endl;
				op<<"Nama      : "<<bl.nama<<endl;
				op<<"No.HP     : "<<bl.hp<<endl;
				op<<"Tanggal   : "<<bl.tgl<<endl;
				op<<"Mulai Jam : "<<bl.mulai<<endl;
				op<<"Lapangan  : Lapangan Karpet"<<endl;
				op<<"Bermain   : "<<bl.jam<<" Jam"<<endl;
				op<<"Bayar     : DP "<<endl;
				op<<"Harga     : Rp."<<total<<endl;
				op<<"No.Rek    : "<<norek<<endl;
				op<<"================================="<<endl;
				op<<"  Silahkan Membayar Melalui ATM  "<<endl;
				op<<"Dengan Transfer Ke Nomor Rekening"<<endl;
				op<<"          Dibawah Ini            "<<endl;
				op<<"        1122334455667788         "<<endl;
				op<<"================================="<<endl;
				
				ofstream os;
				os.open("Daftar Bookingan.txt",ios::app);
				os<<"================================="<<endl;
				os<<"|    DAFTAR BOOKING LAPANGAN    |"<<endl;
				os<<"================================="<<endl;
				os<<"Nama      : "<<bl.nama<<endl;
				os<<"No.HP     : "<<bl.hp<<endl;
				os<<"Tanggal   : "<<bl.tgl<<endl;
				os<<"Mulai Jam : "<<bl.mulai<<endl;
				os<<"Lapangan  : Lapangan Karpet"<<endl;
				os<<"Bermain   : "<<bl.jam<<" Jam"<<endl;
				
				ofstream oo;
				oo.open("Struk Simpan.txt",ios::app);
				oo<<"================================="<<endl;
				oo<<"|     Data Booking Lapangan     |"<<endl;
				oo<<"================================="<<endl;
				oo<<"Nama      : "<<bl.nama<<endl;
				oo<<"No.HP     : "<<bl.hp<<endl;
				oo<<"Tanggal   : "<<bl.tgl<<endl;
				oo<<"Mulai Jam : "<<bl.mulai<<endl;
				oo<<"Lapangan  : Lapangan Karpet"<<endl;
				oo<<"Bermain   : "<<bl.jam<<" Jam"<<endl;
				oo<<"Bayar     : DP "<<endl;
				oo<<"Harga     : Rp."<<total<<endl;
				oo<<"No.Rek    : "<<norek<<endl;
			}
			else if(pilih3==2){
				cout<<"Bermain Berapa Jam : ";cin>>bl.jam;
				total=LN2*bl.jam;
				cout<<"Total Tagihan Anda Rp."<<total<<endl;
				cout<<"Masukkan No.Rekening Anda : ";cin>>norek;
				cout<<"Tagihan Berhasil Dibuat"<<endl;
				ofstream op;
				op.open("Struk Tagihan.txt");
				op<<"================================="<<endl;
				op<<"|       TAGIHAN PEMBAYARAN      |"<<endl;
				op<<"================================="<<endl;
				op<<"Nama      : "<<bl.nama<<endl;
				op<<"No.HP     : "<<bl.hp<<endl;
				op<<"Tanggal   : "<<bl.tgl<<endl;
				op<<"Mulai Jam : "<<bl.mulai<<endl;
				op<<"Lapangan  : Lapangan Karpet"<<endl;
				op<<"Bermain   : "<<bl.jam<<" Jam"<<endl;
				op<<"Bayar     : Lunas "<<endl;
				op<<"Harga     : Rp."<<total<<endl;
				op<<"No.Rek    : "<<norek<<endl;
				op<<"================================="<<endl;
				op<<"  Silahkan Membayar Melalui ATM  "<<endl;
				op<<"Dengan Transfer Ke Nomor Rekening"<<endl;
				op<<"          Dibawah Ini            "<<endl;
				op<<"        1122334455667788         "<<endl;
				op<<"================================="<<endl;
				
				ofstream os;
				os.open("Daftar Bookingan.txt",ios::app);
				os<<"================================="<<endl;
				os<<"|    DAFTAR BOOKING LAPANGAN    |"<<endl;
				os<<"================================="<<endl;
				os<<"Nama      : "<<bl.nama<<endl;
				os<<"No.HP     : "<<bl.hp<<endl;
				os<<"Tanggal   : "<<bl.tgl<<endl;
				os<<"Mulai Jam : "<<bl.mulai<<endl;
				os<<"Lapangan  : Lapangan Karpet"<<endl;
				os<<"Bermain   : "<<bl.jam<<" Jam"<<endl;
				
				ofstream oo;
				oo.open("Struk Simpan.txt",ios::app);
				oo<<"================================="<<endl;
				oo<<"|     Data Booking Lapangan     |"<<endl;
				oo<<"================================="<<endl;
				oo<<"Nama      : "<<bl.nama<<endl;
				oo<<"No.HP     : "<<bl.hp<<endl;
				oo<<"Tanggal   : "<<bl.tgl<<endl;
				oo<<"Mulai Jam : "<<bl.mulai<<endl;
				oo<<"Lapangan  : Lapangan Karpet"<<endl;
				oo<<"Bermain   : "<<bl.jam<<" Jam"<<endl;
				oo<<"Bayar     : DP "<<endl;
				oo<<"Harga     : Rp."<<total<<endl;
				oo<<"No.Rek    : "<<norek<<endl;
			}
		} else if(pilih2==2){
			cout<<"Pilihan Tagihan Pembayaran\n[1] DP\t\t Rp.40.000\n[2] Lunas\t Rp.100.000\n";
			cout<<"Masukkan Pilihan : ";cin>>pilih4;
			if(pilih4==1){
				cout<<"Bermain Berapa Jam : ";cin>>bl.jam;
				total=DP2*bl.jam;
				cout<<"Total Tagihan Anda Rp."<<total<<endl;
				cout<<"Silahkan Datang Ke Tempat Kami Untuk Melakukan Pembayaran"<<endl;
				cout<<"Tagihan Berhasil Dibuat";
				ofstream op;
				op.open("Struk Tagihan.txt");
				op<<"================================="<<endl;
				op<<"|       TAGIHAN PEMBAYARAN      |"<<endl;
				op<<"================================="<<endl;
				op<<"Nama      : "<<bl.nama<<endl;
				op<<"No.HP     : "<<bl.hp<<endl;
				op<<"Tanggal   : "<<bl.tgl<<endl;
				op<<"Mulai Jam : "<<bl.mulai<<endl;
				op<<"Lapangan  : Lapangan Karpet"<<endl;
				op<<"Bermain   : "<<bl.jam<<" Jam"<<endl;
				op<<"Bayar     : DP "<<endl;
				op<<"Harga     : Rp."<<total<<endl;
				op<<"================================="<<endl;
				op<<"  Silahkan Datang Ke Tempat Kami "<<endl;
				op<<"    Untuk Melakukan Pembayaran   "<<endl;
				op<<"     Alamat Kami Terletak Di     "<<endl;
				op<<"   Jln.Keindahan Duniawi No.11   "<<endl;
				op<<"================================="<<endl;
				
				ofstream os;
				os.open("Daftar Bookingan.txt",ios::app);
				os<<"================================="<<endl;
				os<<"|    DAFTAR BOOKING LAPANGAN    |"<<endl;
				os<<"================================="<<endl;
				os<<"Nama      : "<<bl.nama<<endl;
				os<<"No.HP     : "<<bl.hp<<endl;
				os<<"Tanggal   : "<<bl.tgl<<endl;
				os<<"Mulai Jam : "<<bl.mulai<<endl;
				os<<"Lapangan  : Lapangan Karpet"<<endl;
				os<<"Bermain   : "<<bl.jam<<" Jam"<<endl;
				
				ofstream oo;
				oo.open("Struk Simpan.txt",ios::app);
				oo<<"================================="<<endl;
				oo<<"|     Data Booking Lapangan     |"<<endl;
				oo<<"================================="<<endl;
				oo<<"Nama      : "<<bl.nama<<endl;
				oo<<"No.HP     : "<<bl.hp<<endl;
				oo<<"Tanggal   : "<<bl.tgl<<endl;
				oo<<"Mulai Jam : "<<bl.mulai<<endl;
				oo<<"Lapangan  : Lapangan Karpet"<<endl;
				oo<<"Bermain   : "<<bl.jam<<" Jam"<<endl;
				oo<<"Bayar     : DP "<<endl;
				oo<<"Harga     : Rp."<<total<<endl;
				oo<<"No.Rek    : "<<norek<<endl;
			} 
			else if(pilih4==2){
				cout<<"Bermain Berapa Jam : ";cin>>bl.jam;
				total=LN2*bl.jam;
				cout<<"Total Tagihan Anda Rp."<<total<<endl;
				cout<<"Silahkan Datang Ke Tempat Kami Untuk Melakukan Pembayaran"<<endl;
				cout<<"Tagihan Berhasil Dibuat"<<endl;
				ofstream op;
				op.open("Struk Tagihan.txt");
				op<<"================================="<<endl;
				op<<"|       TAGIHAN PEMBAYARAN      |"<<endl;
				op<<"================================="<<endl;
				op<<"Nama      : "<<bl.nama<<endl;
				op<<"No.HP     : "<<bl.hp<<endl;
				op<<"Tanggal   : "<<bl.tgl<<endl;
				op<<"Mulai Jam : "<<bl.mulai<<endl;
				op<<"Lapangan  : Lapangan Karpet"<<endl;
				op<<"Bermain   : "<<bl.jam<<" Jam"<<endl;
				op<<"Bayar     : Lunas "<<endl;
				op<<"Harga     : Rp."<<total<<endl;
				op<<"================================="<<endl;
				op<<"  Silahkan Datang Ke Tempat Kami "<<endl;
				op<<"    Untuk Melakukan Pembayaran   "<<endl;
				op<<"     Alamat Kami Terletak Di     "<<endl;
				op<<"   Jln.Keindahan Duniawi No.11   "<<endl;
				op<<"================================="<<endl;
				
				ofstream os;
				os.open("Daftar Bookingan.txt",ios::app);
				os<<"================================="<<endl;
				os<<"|    DAFTAR BOOKING LAPANGAN    |"<<endl;
				os<<"================================="<<endl;
				os<<"Nama      : "<<bl.nama<<endl;
				os<<"No.HP     : "<<bl.hp<<endl;
				os<<"Tanggal   : "<<bl.tgl<<endl;
				os<<"Mulai Jam : "<<bl.mulai<<endl;
				os<<"Lapangan  : Lapangan Karpet"<<endl;
				os<<"Bermain   : "<<bl.jam<<" Jam"<<endl;
				
				ofstream oo;
				oo.open("Struk Simpan.txt",ios::app);
				oo<<"================================="<<endl;
				oo<<"|     Data Booking Lapangan     |"<<endl;
				oo<<"================================="<<endl;
				oo<<"Nama      : "<<bl.nama<<endl;
				oo<<"No.HP     : "<<bl.hp<<endl;
				oo<<"Tanggal   : "<<bl.tgl<<endl;
				oo<<"Mulai Jam : "<<bl.mulai<<endl;
				oo<<"Lapangan  : Lapangan Karpet"<<endl;
				oo<<"Bermain   : "<<bl.jam<<" Jam"<<endl;
				oo<<"Bayar     : DP "<<endl;
				oo<<"Harga     : Rp."<<total<<endl;
				oo<<"No.Rek    : "<<norek<<endl;
			}
		} 
		break;
		default:
			cout<<"Pilihan Menu Tidak Tersedia"<<endl;
			break;
					
	} 
	string baca;
	ifstream ap("Struk Tagihan.txt");
	if(ap.is_open()){
		while(getline(ap,baca)){
			cout<<baca<<endl;
		} ap.close();
	} else{
		cout<<"File Gagal dibuka"<<endl;
	}	
}
void CB(){
	string baca;
	ifstream as("Daftar Bookingan.txt");
	if(as.is_open()){
		while(getline(as,baca)){
			cout<<baca<<endl;
		} as.close();
	} else{
		cout<<"File Gagal dibuka"<<endl;
	}	
}
	
void pilihmenu(silver menu){
	silver bl;
	futsal coba;
	cout<<"[1] Booking Lapangan Futsal\n[2] Cek Bookingan Futsal\n[3] Tentang Futsal (No.HP/Alamat/Dll)\n[4] Keluar Aplikasi\n";
	cout<<"Masukkan Pilihan : ";
	cin>>menu.pilih;
	switch(menu.pilih){
		case 1:
			BL(bl);
			break;
		case 2:
			CB();
			break;
		case 3:
			coba.about1();
			break;
		case 4:
			coba.kluar1();
			break;
		default:
			cout<<"Pilihan Menu Tidak Tersedia"<<endl;
			break;
	}
}
main(){
	string ulang;
	futsal coba;
	silver menu;
	coba.viewjudul1();
	do{
	pilihmenu(menu);
	cout<<"Apakah Anda Ingin Ke Menu Lagi ?(Y/N)";cin>>ulang;
 }while(ulang=="Y"||ulang=="y");
 coba.kluar1();
 
 return 0;
}


C. Hasil Running




Tidak ada komentar

© 2020 Pak Aditya. Diberdayakan oleh Blogger.