fork(1) download
  1. #include <iostream>
  2. #include <iomanip>
  3. #include <sstream>
  4.  
  5. using namespace std;
  6.  
  7. void dayNight(string ss)
  8. {
  9. int h, m, s;
  10. char c;
  11. istringstream(ss) >> h >>c >> m >> c >> s;
  12.  
  13. if (h >=21 || h <= 5) cout << "Ночь\n"; else cout << "День\n";
  14. }
  15.  
  16.  
  17. int main(int argc, char * argv[])
  18. {
  19. dayNight("13:02:01");
  20. dayNight("23:02:01");
  21.  
  22. }
  23.  
Success #stdin #stdout 0s 5460KB
stdin
Standard input is empty
stdout
День
Ночь