#include<iostream>
using namespace std;
int hour(int h)
{
    int second;
    //second=(h/3600);
    if (h>3600)
        second=h/3600;
    else 
       second=(h/3600);
    return (second);
}
int minute(int m)
{
    int second2;
    second2=(   );
    return(second2);
}
int second(int s)
{
    int second3;
    second3=((s-3600)%60);
    return (second3);
}
void main()
{
    int convert;
    cout<<"please enter seconed to convert it to hour\b";
    cin>>convert;
    cout<<"hr : min : sec \n";
    cout<<hour(convert)<<":"<<minute(convert)<<":"<<second(convert)<<endl;
    system("pause");
}
thanks for the help, this is supposed to convert seconds to minutes to hours but it doesnt seem to work properly.again, sorry if its super simple i just started learning c++ this year and a lot of stuff confuses me
 
     
    