How to convert hh:mm:ss to minutes in C++

1 Answer

0 votes
#include <iostream>
#include <sstream>
#include <vector>

double hhmmsstominutes(const std::string& hhmmss) {
    std::vector<int> time;
    std::stringstream ss(hhmmss);
    std::string segment;

    while (getline(ss, segment, ':')) {
        time.push_back(stoi(segment));
    }

    return (time[0] * 60) + time[1] + (time[2] / 60.0);
}

int main() {
    std::cout << hhmmsstominutes("2:30:00") << std::endl;
    std::cout << hhmmsstominutes("2:35:30") << std::endl;
    std::cout << hhmmsstominutes("5:00:45") << std::endl;

    return 0;
}

   
   
/*
run:
   
150
155.5
300.75
   
*/

 



answered Apr 17, 2025 by avibootz

Related questions

2 answers 76 views
1 answer 169 views
169 views asked Apr 17, 2025 by avibootz
1 answer 84 views
1 answer 109 views
1 answer 92 views
1 answer 106 views
1 answer 96 views
...