Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Program: saludo.cc
- // Author: Yoan Pinzon
- // Date: Agosto 30, 2006
- #include <iostream>
- using namespace std;
- int main()
- {
- int hh, mm;
- cout << "Saludo" << endl;
- cout << "======" << endl;
- cout << "Ingrese un tiempo (hh mm)= "; cin >> hh >> mm;
- min = hh * 60 + mm;
- if (min >= 360 && min <= 719) cout << "Buenos Dias" << endl;
- if (min >= 720 && min <= 1140) cout << "Buenos Trades" << endl;
- if (min >= 1141 && min <= 359) cout << "Buenos Noches" << endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement