Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,895 questions

51,826 answers

573 users

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 53 views
1 answer 111 views
111 views asked Apr 17, 2025 by avibootz
1 answer 65 views
1 answer 81 views
1 answer 72 views
1 answer 75 views
1 answer 70 views
...