forked from BlackTimber-Labs/DemoPullRequest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBot.cpp
More file actions
35 lines (34 loc) · 721 Bytes
/
Bot.cpp
File metadata and controls
35 lines (34 loc) · 721 Bytes
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
#include<iostream>
#include<string>
using namespace std;
void delay(int t = 100000000)
{
int k;
for (int i = 0; i < t; i++)
{
k = i;
}
}
int main()
{
long double n;
char t[40];
char z[30];
string str;
cout << "Made by_Avi Aryan !\n";
cout << "**********\n\n\n";
cout << "\n HELLO ! HOW MAY I HELP YOU$\n";
delay();
cout << "WHAT IS YOUR NAME.\n";
getline(cin, str);
cout << "HOW ARE YOU " << str;
cout << "\n";
cin.get(t, 40);
cout << "I AM ALSO FINE.";
cout << "\nWHAT IS YOUR PHONE NUMBER: ";
cin >> n;
cout << "WHAT IS YOUR ID:";
cin >> z;
cout << "\n THANK YOU ! ";
return 0;
}