-
Notifications
You must be signed in to change notification settings - Fork 1
/
faq.cpp
82 lines (75 loc) · 2.61 KB
/
faq.cpp
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
/*
File Name : about.cpp
Description :
Author : Garly Nugraha & Nazwa Fitriyani Zahra
Date : 08/12/2001
*/
/* ========== Header File ========== */
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
#include "welcome.h"
/* ======= End of Header File ====== */
int FAQ(){
printf("\n");printf("\n");
printf("=============================================================================");
printf("\n");
printf("============= WHAT DO YOU WANT TO KNOW ABOUT ALOEVERA EDHOTEL?? =============");
printf("\n");
printf("\n");
printf(" ---------------------------------------------------------------------");
printf("\n");
printf(" |\t\t\t\t\t\t\t\t\t|");
printf("\n");
printf(" |\t >>>What is Aloevera EdHotel reservation system ?<<< \t|");
printf("\n");
printf(" |\t\t\t\t\t\t\t\t\t|");
printf("\n");
printf(" | Aloevera EdHotel reservation system is Lorem ipsum dolor sit |");
printf("\n");
printf(" |amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt|");
printf("\n");
printf(" |\t\t tut labore et dolore magna aliqua. \t\t|");
printf("\n");
printf(" |\t\t\t\t\t\t\t\t\t|");
printf("\n");
printf(" |-------------------------------------------------------------------|");
printf("\n");
printf(" |\t\t\t\t\t\t\t\t\t|");
printf("\n");
printf(" |\t >>>Is it possible to order an extra bed/baby cot ?<<< \t|");
printf("\n");
printf(" |\t\t\t\t\t\t\t\t\t|");
printf("\n");
printf(" | Yes is it possible,but the customer have to Lorem ipsum dolor sit |");
printf("\n");
printf(" |amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt|");
printf("\n");
printf(" |\t\t tut labore et dolore magna aliqua. \t\t|");
printf("\n");
printf(" |\t\t\t\t\t\t\t\t\t|");
printf("\n");
printf(" |-------------------------------------------------------------------|");
printf("\n");
printf(" |\t\t\t\t\t\t\t\t\t|");
printf("\n");
printf(" |\t >>>Can I make a reservation without a credit card ?<<< \t|");
printf("\n");
printf(" |\t\t\t\t\t\t\t\t\t|");
printf("\n");
printf(" | Yes you can, but the customer have to Lorem ipsum dolor sit |");
printf("\n");
printf(" |amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt|");
printf("\n");
printf(" |\t\t tut labore et dolore magna aliqua. \t\t|");
printf("\n");
printf(" |\t\t\t\t\t\t\t\t\t|");
printf("\n");
printf(" ---------------------------------------------------------------------");
printf("\n\n");
printf("Press Any Key to continue . . .");
getche();
system("cls");
/* Call Modul Welcome */
Welcome();
}