-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHolaChica.cpp
executable file
·45 lines (37 loc) · 1 KB
/
HolaChica.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
/*
* HolaChica.cpp
* This program is a Spanish Chatbot.
*
* Created by Pedro Damian Sanchez Jr. on 02/22/2017
* Copyright © 2024. All rights reserved.
*/
#include <iostream>
#include <string>
#include <cmath>
using namespace std;
int main() {
int edad;
string nombre;
cout << "Hola Chica! Mi nombre es Pedro Damian Sanchez Jr, programador extraordinario.\n\n\nComo te llamas?\n";
cout << "Escriba tu nombre: "; getline(cin, nombre);
cout << endl;
cout << "Hola " << nombre << ", mucho gusto en conoser te.\n\nY cual es tu edad?\n";
cout << "Introduzca su edad: "; cin >> edad;
cout << endl;
if (edad < 18) {
cout << "Ay guey! Hablamos despues de que cumples 18, bye.\n";
}
else if (edad == 18) {
cout << "Mmmm. Que rico, bebe.\n";
}
else if (edad >= 19 && edad <= 36) {
cout << "Estas un poquito mas joven que yo, pero que rico.\n";
}
else {
cout << "Estas muy grande para mi, bye.\n";
}
cout << endl;
fflush(stdin);
cin.get();
return 0;
}